java 同时使用多个流_Java – 使用流lambdas交叉多个集合

您可以在某个实用程序类中编写自己的收集器并使用它:

public static > Collector> intersecting() {

class Acc {

Set result;

void accept(S s) {

if(result == null) result = new HashSet<>(s);

else result.retainAll(s);

}

Acc combine(Acc other) {

if(result == null) return other;

if(other.result != null) result.retainAll(other.result);

return this;

}

}

return Collector.of(Acc::new, Acc::accept, Acc::combine,

acc -> acc.result == null ? Collections.emptySet() : acc.result,

Collector.Characteristics.UNORDERED);

}

用法非常简单:

Set result = Arrays.stream(collections).collect(MyCollectors.intersecting());

但请注意,收集器不能短路:即使中间结果是空集合,它仍将处理流的其余部分.

这种收集器可以在我的免费StreamEx库中找到(见MoreCollectors.intersecting()).它适用于像上面这样的普通流,但如果你将它与StreamEx(扩展普通流)一起使用,它就会变成短路:处理实际上可能会提前停止.

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值