public static void main(String[] s){
String str = "abc\ndef";
System.out.println(str);
System.out.println(str.length());
}
执行结果:
abc
def
7
该结果说明回车占一个字符的位置,即占据一个索引。
字符串定义为 "abc\ndef" 就好了,其中 \n 就是一个转义字符,占1个字节
晕,居然打错字了
占据,回车在字符串中是回车符【\r】
\n是换行符
我也既不是很清楚具体是哪个标付了,貌似是 /t吧?
要的,是要占据一个位置的!
用转移字符!/n
新手,不懂 什么叫占索引?