androidstudio 如何判断String为空
时间: 2024-09-27 22:02:32 浏览: 40
Android Studio实现发短信功能
在Android Studio中,你可以使用多种方法来判断一个`String`是否为空:
1. 使用`isEmpty()`方法:这个方法直接检查字符串是否长度为0。
```java
String str = "example";
if (str.isEmpty()) {
// 字符串为空
}
```
2. 使用`null`关键字:如果你不确定字符串是否已经实例化,可以先检查它是否为`null`。
```java
String str = null;
if (str == null) {
// 字符串为空
}
```
3. 使用`.length()`属性:如果`length()`返回值为0,说明字符串也是空的。
```java
String str = "";
if (str.length() == 0) {
// 字符串为空
}
```
4. 使用三目运算符(条件运算符)简化判断:
```java
String str = "";
boolean isNullOrEmpty = str == null || str.isEmpty();
if (isNullOrEmpty) {
// 字符串为空
}
```
阅读全文