在Java 8中将List转换为Map对象方法

假设有一个员工对象:

<b>public</b> <b>class</b> Employee {

<font><i>// member variables</i></font><font>

<b>private</b> <b>int</b> empId;

<b>private</b> String empName;

<b>private</b> <b>int</b> empAge;

<b>private</b> String empDesignation;

</font>

将这个员工对象放入LIst集合,如何转为Map? 首先要明确Map的key是什么?

1. 比如式样员工对象的empId作为key,值是员工姓名:

<font><i>// convert List<Employee> to Map<empId, empName> using Java 8 Streams</i></font><font>

Map<Integer, String> mapOfEmployees = employees.stream().collect(

Collectors.toMap(e -> e.getEmpId(),e -> e.getEmpName()));

</font>

2.Map的Key是empId,整个对象为Map的值:

<font><i>// convert List<Employee> to Map<empId, empName> using Java 8 Streams</i></font><font>

Map<Integer, Employee> mapOfEmployees = employees.stream().collect(

Collectors.toMap( e -> e.getEmpId(), e -> e));

</font>

3. 如果List中有重复的empId,映射到Map时,Key时不能重复的,如何解决?

默认情况时会抛重复异常,为了克服IllegalStateException重复键异常,我们可以简单地添加一个

BinaryOperator方法到toMap()中,这也称为合并功能,比如如果重复,可以取第一个元素:

Map<Integer, String> mapOfEmployees = employees.stream().collect(

Collectors.toMap(

e -> e.getEmpId(),

e -> e.getEmpName(),

(e1, e2) -> e1 )); <font><i>// Merge Function</i></font><font>

</font>

4. 将List转换为Map - 使用TreeMap对键进行自然排序,或者指定的Map实现呢?

Map<Integer, String> mapOfEmployees = employees.stream().collect(

Collectors.toMap(

e -> e.getEmpId(),

e -> e.getEmpName(),

(e1, e2) -> e1 , <font><i>// Merge Function</i></font><font>

TreeMap<Integer, String>::<b>new</b>)); </font><font><i>// Map Supplier</i></font><font>

</font>

如果你的TreeMap实现需要加入比较器,将上面代码中TreeMap<Integer, String>::new替换成:

() -> new TreeMap<Integer, String>(new MyComparator())

总结

以上所述是小编给大家介绍的在Java 8中将List转换为Map对象方法,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对网站的支持!

以上是 在Java 8中将List转换为Map对象方法 的全部内容, 来源链接: utcz.com/z/356910.html

回到顶部