在Java中,String.length()方法用于返回字符串的长度,即字符串中包含的字符数。它是一个实例方法,需要通过一个String对象调用。
示例:
String str = "Hello, World!"; int length = str.length(); System.out.println("Length of the string: " + length);
输出结果为:
Length of the string: 13