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