位置:首頁 > Java技術 > java.lang > java.lang.String.length()方法實例

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