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