Java 字串 length() 方法

此函式用於獲取 Java 字串的長度。字串 length 方法返回字元中的字元數。此方法返回任何字串的長度,該字串等於字串中的 16 位 Unicode 字元數。

字串 length() 方法語法:

public int length()

引數:

NA

返回值:

此方法返回字串的長度。

Java 字串 length() 方法示例

在這個程式中,我們有兩個字串,我們使用 length() 方法找出它們的長度。

public class Sample_String {
    public static void main(String[] args) {
        //declare the String as an object S1 S2
        String S1 = "Hello Java String Method";
        String S2 = "RockStar";
        //length() method of String returns the length of a String S1.
        int length = S1.length();
        System.out.println("Length of a String is: " + length);
        //8 Length of a String RockStar
        System.out.println("Length of a String is: " + S2.length());
    }
}

輸出:

Length of a String is: 24
Length of a String is: 8