Android TextUtils isEmpty vs String.isEmpty

前端 未结 5 918
南方客
南方客 2020-12-23 17:08

What is difference between TextUtils.isEmpty(string) and string.isEmpty?

Both do the same operation.

Is it advantageous to use

相关标签:
5条回答
  • 2020-12-23 17:58

    Take a look at the doc

    for the String#isEmpty they specify:

    boolean
    isEmpty() Returns true if, and only if, length() is 0.

    and for the TextUtils.isEmpty the documentation explains:

    public static boolean isEmpty (CharSequence str)

    Returns true if the string is null or 0-length.

    so the main difference is that using the TextUtils.isEmpty, you dont care or dont need to check if the string is null referenced or not,

    in the other case yes.

    0 讨论(0)
  • 2020-12-23 18:04
    String?.isNullOrEmpty
    

    might be what you are looking for

    0 讨论(0)
  • 2020-12-23 18:06

    Yes, TextUtils.isEmpty(string) is preferred.


    For string.isEmpty(), a null string value will throw a NullPointerException

    TextUtils will always return a boolean value.

    In code, the former simply calls the equivalent of the other, plus a null check.

    return string == null || string.length() == 0;
    
    0 讨论(0)
  • 2020-12-23 18:08

    TextUtils.isEmpty() is better in Android SDK because of inner null check, so you don't need to check string for null before checking its emptiness yourself.

    But with Kotlin, you can use String?.isEmpty() and String?.isNotEmpty() instead of TextUtils.isEmpty() and !TextUtils.isEmpty(), it will be more reader friendly

    So I think it is preferred to use String?.isEmpty() in Kotlin and TextUtils.isEmpty() in Android Java SDK

    0 讨论(0)
  • 2020-12-23 18:11

    In class TextUtils

    public static boolean isEmpty(@Nullable CharSequence str) {
        if (str == null || str.length() == 0) {
            return true;
        } else {
            return false;
        }
    }
    

    checks if string length is zero and if string is null to avoid throwing NullPointerException

    in class String

    public boolean isEmpty() {
        return count == 0;
    }
    

    checks if string length is zero only, this may result in NullPointerException if you try to use that string and it is null.

    0 讨论(0)
提交回复
热议问题