您好,登錄后才能下訂單哦!
這篇文章主要講解了“ObjectUtils.isEmpty()和null的區別是什么”,文中的講解內容簡單清晰,易于學習與理解,下面請大家跟著小編的思路慢慢深入,一起來研究和學習“ObjectUtils.isEmpty()和null的區別是什么”吧!
isEmpty()
:判斷值是否為空,即使已經分配內存,但沒有賦值,依然是空
null
:判斷值是否為空,沒有分配內存, 可能出現空指針異常
public class IsEmptyTest { public static void main(String[] args) { String s1 = new String(); String s2 = "abc"; String s3 = ""; System.out.println(s1 == null); System.out.println(ObjectUtils.isEmpty(s1)); System.out.println("---------------"); System.out.println(s2 == null); System.out.println(ObjectUtils.isEmpty(s2)); System.out.println("---------------"); System.out.println(s3 == null); System.out.println(ObjectUtils.isEmpty(s3)); } false true --------------- false false --------------- false true
今天在嘗試自己做一個轉換器時,被系統提示isEmpty被啟用,但是學習視頻中沒有:
但是頁面可以顯示處自己轉換器要實現的結果:
根據提示改為hasLength和hasText后,頁面均沒有實現想要的結果,顯示為null
就用isEmpyt,或者改為他描述的另一種方法:ObjectUtils.isEmpty
感謝各位的閱讀,以上就是“ObjectUtils.isEmpty()和null的區別是什么”的內容了,經過本文的學習后,相信大家對ObjectUtils.isEmpty()和null的區別是什么這一問題有了更深刻的體會,具體使用情況還需要大家實踐驗證。這里是億速云,小編將為大家推送更多相關知識點的文章,歡迎關注!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。