1.「==」源碼分析
2.equalsspa
3.TextUtils.isEmpty(str)指針
源碼分析:code
public static boolean isEmpty(CharSequence str) { if (str == null || str.length() == 0) return true; else return false; }
4.str.isEmpty()對象
至關於只判斷了str.length == 0.當null的時候,會出現空指針異常blog