tt = consumeRecords.stream().filter(item -> temp.contains(item)).collect(toList());
时间: 2024-06-07 11:06:20 浏览: 49
arm-2014.05-29-arm-none-linux-gnueabi
这是一个 Java 8 中的流式操作,首先调用 `consumeRecords.stream()` 将一个集合转换为一个流,然后调用 `filter()` 方法对流中的元素进行过滤。这里的过滤条件是 `temp.contains(item)`,即只保留集合 `temp` 中包含的元素。最后调用 `collect()` 方法将过滤后的元素收集到一个新的集合中。这里使用的收集器是 `toList()`,即将元素收集到一个 List 集合中。
阅读全文