在Java中,`indexOf`方法有以下几种形式:
1. `int indexOf(int ch)`:返回指定字符在字符串中第一次出现的索引位置,如果未找到该字符,则返回-1。
2. `int indexOf(int ch, int fromIndex)`:返回指定字符在字符串中从指定的索引位置开始的第一次出现的索引位置,如果未找到该字符,则返回-1。
3. `int indexOf(String str)`:返回指定字符串在字符串中第一次出现的索引位置,如果未找到该字符串,则返回-1。
4. `int indexOf(String str, int fromIndex)`:返回指定字符串在字符串中从指定的索引位置开始的第一次出现的索引位置,如果未找到该字符串,则返回-1。
示例使用:
```java
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
```