List<Tq>list=tqMapper.queryAll().stream().filter(x -> x.getState().equals(2)).collect(Collectors.toList())解释
时间: 2024-05-24 13:12:02 浏览: 66
react.js 状态管理(3)1
这行代码的作用是从 `tqMapper` 中查询所有的 `Tq` 对象,然后使用 `stream()` 方法将其转化为流,接着使用 `filter()` 方法过滤出状态为 2 的 `Tq` 对象,并将过滤结果转化为列表 `List<Tq>`。其中,`x -> x.getState().equals(2)` 表示使用 lambda 表达式过滤出状态为 2 的 `Tq` 对象。
阅读全文