在Android中,我们可以使用以下方法来判断一个对象是否为空:
String text = "hello";
if (!TextUtils.isEmpty(text)) {
// text is not empty
}
CharSequence charSequence = "hello";
if (!TextUtils.isEmpty(charSequence)) {
// charSequence is not empty
}
List<String> list = new ArrayList<>();
if (!TextUtils.isEmpty(list)) {
// list is not empty
}
Object obj = new Object();
if (Objects.requireNonNull(obj) != null) {
// obj is not null
}
这些方法可以帮助我们在Android开发中进行非空判断,避免空指针异常的发生。