共计 602 个字符,预计需要花费 2 分钟才能阅读完成。
在 Java 中,indexOf
方法有以下几种形式:
int indexOf(int ch)
:返回指定字符在字符串中第一次出现的索引位置,如果未找到该字符,则返回 -1。int indexOf(int ch, int fromIndex)
:返回指定字符在字符串中从指定的索引位置开始的第一次出现的索引位置,如果未找到该字符,则返回 -1。int indexOf(String str)
:返回指定字符串在字符串中第一次出现的索引位置,如果未找到该字符串,则返回 -1。int indexOf(String str, int fromIndex)
:返回指定字符串在字符串中从指定的索引位置开始的第一次出现的索引位置,如果未找到该字符串,则返回 -1。
示例使用:
String str = "Hello World";
int index1 = str.indexOf('o');
System.out.println(index1); // 输出:4
int index2 = str.indexOf('o', 5);
System.out.println(index2); // 输出:7
int index3 = str.indexOf("World");
System.out.println(index3); // 输出:6
int index4 = str.indexOf("World", 7);
System.out.println(index4); // 输出:-1
丸趣 TV 网 – 提供最优质的资源集合!
正文完