阅读量:0
在Java中,可以使用String类的length()方法来获取字符串的长度。这个方法返回一个整数,表示字符串中字符的数量。下面是一个简单的示例代码:
String str = "Hello, World!"; int length = str.length(); System.out.println("The length of the string is: " + length);
在这个示例中,我们定义一个字符串变量str
,并使用length()
方法获取它的长度,并将结果打印出来。在这种情况下,输出将是The length of the string is: 13
,因为字符串中有13个字符(包括空格和标点符号)。