Java String length() 方法

实例

返回字符串中的字符数:

  1. public class Main {
  2. public static void main(String[] args) {
  3. String txt = "ABCDEFGHIJKLMNOPQRSTUVWXYZ";
  4. System.out.println(txt.length());
  5. }
  6. }

定义与用法

length() 方法返回指定字符串的长度。

注意:空字符串的长度为 0。


语法


参数


技术细节

返回:一个 int 值,表示字符串的长度

分类导航