当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Java Java.lang.String.length()用法及代码示例



描述

这个java.lang.String.length() 方法返回此字符串的长度。长度等于字符串中 Unicode 代码单元的数量。

声明

以下是声明java.lang.String.length()方法

public int length()

参数

NA

返回值

此方法返回此对象表示的字符序列的长度。

异常

NA

示例

下面的例子展示了 java.lang.String.length() 方法的用法。

package com.tutorialspoint;

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

相关用法


注:本文由纯净天空筛选整理自 Java.lang.String.length() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。