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