溫馨提示×

Java怎么獲取某個數(shù)值的索引

小億
135
2024-03-02 14:53:22
欄目: 編程語言

在Java中獲取某個數(shù)值的索引可以使用for循環(huán)來遍歷數(shù)組或集合,然后判斷每個元素是否等于目標數(shù)值,如果相等,則返回該元素的索引。

以下是一個示例代碼:

public class Main {
    public static void main(String[] args) {
        int[] numbers = {1, 2, 3, 4, 5};
        int target = 3;
        
        int index = -1;
        for (int i = 0; i < numbers.length; i++) {
            if (numbers[i] == target) {
                index = i;
                break;
            }
        }
        
        if (index != -1) {
            System.out.println("目標數(shù)值 " + target + " 的索引為 " + index);
        } else {
            System.out.println("未找到目標數(shù)值 " + target);
        }
    }
}

在上面的示例中,我們定義了一個整型數(shù)組numbers和一個目標數(shù)值target,然后使用for循環(huán)遍歷數(shù)組numbers,判斷數(shù)組元素是否等于目標數(shù)值target,如果找到了相等的數(shù)值,則將該元素的索引賦給index,并退出循環(huán)。最后判斷index的值,如果不等于-1,則輸出目標數(shù)值的索引,否則輸出未找到目標數(shù)值的提示信息。

0