共计 352 个字符,预计需要花费 1 分钟才能阅读完成。
在 Java 中,indexOf 方法通常是用来查找指定元素在字符串中第一次出现的位置的。要调用 indexOf 方法,需要在字符串对象上调用该方法,并传入要查找的元素作为参数。
示例代码如下:
public class Main {public static void main(String[] args) {String str = "Hello World";
int index = str.indexOf("o");
System.out.println("The index of 'o' in the string is: " + index);
}
}
在上面的示例中,我们定义了一个字符串“Hello World”,然后调用了 indexOf 方法来查找字符‘o’在字符串中第一次出现的位置,并将结果打印出来。
丸趣 TV 网 – 提供最优质的资源集合!
正文完