第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號安全,請及時綁定郵箱和手機(jī)立即綁定
已解決430363個問題,去搜搜看,總會有你想問的

如何將其轉(zhuǎn)換為流表達(dá)式?(使用原子引用)

如何將其轉(zhuǎn)換為流表達(dá)式?(使用原子引用)

幕布斯7119047 2022-06-04 17:32:40
我需要更改以下代碼:protected void checkNoDuplicateLabels( List<CompileResult> compileResult ) {    Set<Label> 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 );        }    }}成一條溪流。我知道將 Sets 與流一起使用的一種方法是實(shí)現(xiàn) AtomicReferences,它將方法的第一行替換為:AtomicReference<Set<Label>> infos = new AtomicReference<>( new HashSet<Label>() );我怎樣才能實(shí)現(xiàn)循環(huán)現(xiàn)在對流執(zhí)行的相同功能?
查看完整描述

1 回答

?
牧羊人nacy

TA貢獻(xiàn)1862條經(jīng)驗(yàn) 獲得超7個贊

你可以不這樣做AtomicReference:


BinaryOperator<Label> 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<Label> 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;


查看完整回答
反對 回復(fù) 2022-06-04
  • 1 回答
  • 0 關(guān)注
  • 111 瀏覽

添加回答

舉報

0/150
提交
取消
微信客服

購課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動學(xué)習(xí)伙伴

公眾號

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號