如何判断 Stream<String> 是否为空
时间: 2023-02-17 12:01:01 浏览: 210
判断字符串是否是空
你可以使用 `isEmpty` 方法来判断 `Stream<String>` 是否为空。
例如:
```
Stream<String> stream = // ...
if (stream.isEmpty()) {
// stream is empty
} else {
// stream is not empty
}
```
也可以使用 `.any()` 方法,如果存在任何元素返回 `true`,否则返回 `false`。
例如:
```
Stream<String> stream = // ...
if (stream.any()) {
// stream is not empty
} else {
// stream is empty
}
```
阅读全文