Java中的indexOf()方法用于查找指定元素在數組中的位置索引。它會返回第一個匹配元素的索引,如果數組中不存在該元素,則返回-1。
以下是一個示例,演示如何使用indexOf()方法查找數組中的特定元素:
public class Main {
public static void main(String[] args) {
String[] fruits = {"apple", "banana", "orange", "grape", "kiwi"};
// 查找元素"orange"在數組中的位置索引
int index = indexOf(fruits, "orange");
if (index != -1) {
System.out.println("元素orange的位置索引為: " + index);
} else {
System.out.println("數組中不存在元素orange");
}
}
public static int indexOf(String[] arr, String target) {
for (int i = 0; i < arr.length; i++) {
if (arr[i].equals(target)) {
return i;
}
}
return -1;
}
}
在上面的示例中,我們定義了一個名為indexOf()的方法來查找數組中特定元素的位置索引。然后在main()方法中調用這個方法來查找元素"orange"在fruits數組中的位置索引。最后根據返回的索引值輸出相應的結果。