java判斷字串是否為空

歸去_來兮發表於2020-11-27

非空判斷條件:指標不為空、指向的物件中的內容不為空

if(str != null && !str.isEmpty()) {
    System.out.println("str不為空");
}

String str = null;  //指標為空,不滿足。
String str = "";    //指標不為空,內容為空,不滿足。
String str = "abc"; //指標不為空,內容不為空,滿足。

相關文章