Java String length() 方法

返回上一级

Java String 对象的 length() 方法返回字符串的长度

长度等于字符串中 16 位 Unicode 代码单元的数量

语法

public int length()

参数

返回值

返回字符串长度

范例

下面的代码使用 length() 方法返回字符串的长度

public class Test {
    public static void main(String args[]) {
        String Str1 = new String("www.twle.cn");
        String Str2 = new String("twle" );

        System.out.print("字符串 Str1 长度 :");
        System.out.println(Str1.length());
        System.out.print("字符串 Str2 长度 :");
        System.out.println(Str2.length());
    }
}

编译运行以上 Java 代码,输出结果如下

字符串 Str1 长度 :11
字符串 Str2 长度 :4

返回上一级

Java 基础教程

关于   |   FAQ   |   我们的愿景   |   广告投放   |  博客

  简单教程,简单编程 - IT 入门首选站

Copyright © 2013-2022 简单教程 twle.cn All Rights Reserved.