共计 347 个字符,预计需要花费 1 分钟才能阅读完成。
在 Java 中,indexOf() 方法用于查找指定元素在字符串中第一次出现的位置。方法的语法如下:
public int indexOf(String str)
参数 str 是要查找的字符串,方法返回值是指定字符串在原字符串中第一次出现的位置(索引),如果未找到,则返回 -1。
下面是一个示例代码:
String str = "Hello, World!";
int index = str.indexOf("World");
System.out.println("The index of 'World' in the string is: " + index);
在这个例子中,indexOf() 方法将在字符串 "Hello, World!" 中查找子字符串 "World" 的位置,并将结果打印出来。
丸趣 TV 网 – 提供最优质的资源集合!
正文完