在 Java 中检查字符串是否为空的正确方式是什么?


我们可以使用 String 类的 isEmpty() 方法来验证给定的字符串是否为空。只有当 length() 为 0 时,此方法才返回 true。

示例

实时演示

import java.lang.*;
public class StringDemo {
   public static void main(String[] args) {
      String str = "tutorialspoint";

      // 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 = 14
is this string empty? = false

更新日期: 26-2 月-2020

124 次浏览

开启您的 职业生涯

完成课程获得认证

开始学习
广告