System.out.println("az123z1234z12345z123456z1234567z12345678z449fk".indexOf(‘z‘,2));
str.indexOf(s1,index)
这个函数的用法是查找字符串中的字符 s1 从第 index 个开始查找,返回所在字符的索引是这个意思吗?
但是不明白为什么 indexOf(‘z‘,2) 和 indexOf(‘z‘,3) 返回的都是5呢,首先,indexOf(‘Z‘,2)的2代表的是从你的
字符串第3[请注意是3,它已经跳过了第一个Z]个字符开始找‘Z‘字符,找到后返回‘Z‘字符的位置,请注意,
这个时候返回的位置数 [你这里是5]又是从0位置开始计数的.所以indexOf(‘Z‘,3)找到的那个Z也是和
indexOf(‘Z‘,2) 找到的Z的位置是一样的.
例如:
String s ="java is a"+"platform independent language";
System.out.println("index of t="+s.indexOf(‘t‘)); // 12
System.out.println("last index of t="+s.lastIndexOf(‘t‘)); // 27
System.out.println("index of(t,10)="+s.indexOf(‘t‘,10)); // 12
System.out.println("last index of(t,60=)"+s.lastIndexOf(‘t‘,60)); // 27