减少到列表的第一个元素

减少到列表的第一个元素

本文介绍了流分组方式:减少到列表的第一个元素的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有一个List<Valuta>,可以表示(简化)JSON样式:

I have a List<Valuta> which can be represented (simplified) JSON-style:

我想像这样在Map<String, Valuta>中对其进行转换:

I want to transform that in a Map<String, Valuta> like this:

我写了这样的一句话:

getValute().stream().collect(Collectors.groupingBy(Valuta::getCodice));

但是这会返回Map<String, List<Valuta>>而不是我所需要的.

but this returns a Map<String, List<Valuta>> instead of what I need.

我想mapping()函数对我有用,但是不知道如何.

I suppose mapping() function would work for me, but don't know how.

推荐答案

实际上,您需要在此处使用Collectors.toMap而不是Collectors.groupingBy:

Actually, you need to use Collectors.toMap here instead of Collectors.groupingBy:

Map<String, Valuta> map =
    getValute().stream()
               .collect(Collectors.toMap(Valuta::getCodice, Function.identity()));

groupingBy 用于基于分组功能对Stream的元素进行分组.默认情况下,与分组功能具有相同结果的2个Stream元素将被收集到List中.

toMap 会将元素收集到Map中,其中键是应用给定键映射器的结果,而值是应用值映射器的结果.请注意,默认情况下toMap会在遇到重复项时引发异常.

toMap will collect the elements into a Map where the key is the result of applying a given key mapper and the value is the result of applying a value mapper. Note that toMap, by default, will throw an exception if a duplicate is encountered.

这篇关于流分组方式:减少到列表的第一个元素的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

07-30 02:21