java atomicreference_java – 如何将其转换为流表达式? (使用AtomicReference)

我需要更改以下代码:

protected void checkNoDuplicateLabels( List compileResult ) {

Set infos = new HashSet<>();

for ( AbstractTypeInfo info : infoRepo.getList() ) {

if ( info instanceof Label ) {

Label label = (Label) info;

if ( infos.contains( label ) ) {

compileResult.add( new CompileResult( Severity.FATAL, MessageFormat.format( "Duplicate label found! \n Type: '{0}' \n Language: '{1}'", label.getType(), label.getLanguage() ) ) );

}

infos.add( label );

}

}

}

进入一条小溪.我知道使用集合与流的一种方法是通过实现AtomicReferences,它将方法的第一行替换为:

AtomicReference> infos = new AtomicReference<>( new HashSet() );

如何使用流实现循环正在执行的相同功能?

解决方法:

你可以在没有AtomicReference的情况下做到这一点:

BinaryOperator logDuplicate = (label1, label2) -> {

// Log label2 as duplicate

compileResult.add(new CompileResult(Severity.FATAL, MessageFormat.format("Duplicate label found! \n Type: '{0}' \n Language: '{1}'", label2.getType(), label2.getLanguage())));

return label1;

};

Set infos = infoRepo.getList()

.stream()

.filter(Label.class::isInstance)

.map(Label.class::cast)

.collect(toMap(identity(), identity(), logDuplicate, HashMap::new))

.keySet();

更新:

import static java.util.stream.Collectors.toMap;

import static java.util.function.Function.identity;

标签:java,java-8,java-stream,collections

来源: https://codeday.me/bug/20190827/1745247.html

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值