扫码一下
查看教程更方便
length() 方法返回此字符串的长度。 长度等于字符串中 16 位 Unicode 字符的数量。
public int length()
无
此方法返回此对象表示的字符序列的长度。
public class Main { public static void main(String args[]) { String Str1 = new String("Welcome to jiyik.com"); String Str2 = new String("jiyik" ); System.out.print("String Length :" ); System.out.println(Str1.length()); System.out.print("String Length :" ); System.out.println(Str2.length()); } }
上面示例编译运行结果如下
String Length :20
String Length :5