The value detailShowPOS.stream().sorted().collect(Collectors.toList()) assigned to 'detailShowPOS' is never used什么意思
时间: 2024-05-15 10:12:14 浏览: 69
这个警告表示你定义的变量 `detailShowPOS` 使用了 `sorted()` 和 `collect()` 方法进行了操作,但是最终结果却没有被使用到,可能会导致代码逻辑上的问题。为了避免这个警告,你可以将结果保存到一个变量中,或者直接将结果返回或打印出来。例如:
```
List<String> sortedDetailShowPOS = detailShowPOS.stream().sorted().collect(Collectors.toList());
```
或者:
```
System.out.println(detailShowPOS.stream().sorted().collect(Collectors.toList()));
```
这样就可以避免这个警告了。
阅读全文