java入门教程:字符串长度
来源 :中华考试网 2016-04-27
中字符串长度
用于获取有关对象的信息的方法称为访问器方法。
String类的一个访问器方法是length()方法,它返回字符串对象包含的字符数。
下面的代码执行后,len变量等于17:
public class StringDemo { public static void main(String args[]) { String palindrome = "Dot saw I was Tod"; int len = palindrome.length(); System.out.println( "String Length is : " + len ); } }
以上实例编译运行结果如下:
String Length is : 17