Merge Map Java 8 Stream

前端 未结 4 715
灰色年华
灰色年华 2020-12-28 17:56

I would like to merge two Map with JAVA 8 Stream:

Map> mapGlobal = new HashMap>();
Map

        
4条回答
  •  轮回少年
    2020-12-28 18:25

    The original implementation doesn't create result like Map>, but Map>>. You need additional Stream pipeline on it to produce Map>.

提交回复
热议问题