Java isEmpty() 字符串方法

  • 定义和用法

    isEmpty() 方法检查字符串是否为空。 如果字符串为空(length()为0),则此方法返回true;否则,返回false。
  • 语法

    public boolean isEmpty()
  • 参数

    参数 描述
    没有
  • 示例

    找出一个字符串是否为空:
    public class MyClass {
      public static void main(String[] args) {
        String myStr1 = "Hello";
        String myStr2 = "";
        System.out.println(myStr1.isEmpty());
        System.out.println(myStr2.isEmpty());
      }
    }
    
    尝试一下
  • 技术细节

    描述
    返回值: 一个boolean值:
    • true -字符串为空(length()为0)
    • false -字符串不为空