Java中indexOf方法用于查找指定字符串在字符串中第一次出现的位置。它的使用方式如下:
int indexOf(String str)
其中,str为要查找的字符串。
示例代码:
String str = "hello world";
int index = str.indexOf("o");
System.out.println("第一次出现的位置:" + index);
输出结果为:
第一次出现的位置:4
注意:返回的位置是从0开始计算的,如果要查找的字符串不存在,则返回-1。