Java String length() 方法
实例
返回字符串中的字符数:
public class Main {
public static void main(String[] args) {
String txt = "ABCDEFGHIJKLMNOPQRSTUVWXYZ";
System.out.println(txt.length());
}
}
定义与用法
length()
方法返回指定字符串的长度。
注意:空字符串的长度为 0。
语法
参数
无
技术细节
返回: | 一个 int 值,表示字符串的长度 |
---|