溫馨提示×

java中indexof方法如何調用

小億
98
2024-04-30 17:33:51
欄目: 編程語言

在Java中,indexOf方法通常是用來查找指定元素在字符串中第一次出現(xiàn)的位置的。要調用indexOf方法,需要在字符串對象上調用該方法,并傳入要查找的元素作為參數(shù)。

示例代碼如下:

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’ 在字符串中第一次出現(xiàn)的位置,并將結果打印出來。

0