java.lang.String.length()方法实例
java.lang.String.length() 方法返回这个字符串的长度。长度等于Unicode代码单元中的字符串的数目。
声明
以下是java.lang.String.length()方法的声明
public int length()
参数
-
NA
返回值
此方法返回该对象表示的字符序列的长度。
异常
-
NA
例子
下面的例子显示java.lang.String.length()方法的使用。
package com.yiibai; import java.lang.*; public class StringDemo { public static void main(String[] args) { String str = "tutorials point"; // prints length of string System.out.println("length of string = " + str.length()); // checks if the string is empty or not System.out.println("is this string empty? = " + str.isEmpty()); // empty string str = ""; // prints length of string System.out.println("length of string = " + str.length()); // checks if the string is empty or not System.out.println("is this string empty? = " + str.isEmpty()); } }
让我们来编译和运行上面的程序,这将产生以下结果:
length of string = 15 is this string empty? = false length of string = 0 is this string empty? = true