Java String length() 方法
描述
该方法返回此字符串的长度。长度等于字符串中的16位Unicode字符数。
语法
以下是此方法的语法 –
public int length()
参数
这里是参数的详细信息 –
- NA
返回值
- 此方法返回此对象表示的字符序列的长度。
示例
import java.io.*;
public class Test {
public static void main(String args[]) {
String Str1 = new String("Welcome to Tutorialspoint.com");
String Str2 = new String("Tutorials" );
System.out.print("String Length :" );
System.out.println(Str1.length());
System.out.print("String Length :" );
System.out.println(Str2.length());
}
}
这将产生以下结果-
输出
String Length :29
String Length :9