欢迎来到代码驿站!

JAVA代码

当前位置:首页 > 软件编程 > JAVA代码

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

时间:2022-11-08 09:49:58|栏目:JAVA代码|点击:

假设有一个员工对象:

<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中增强for循环在一维数组和二维数组中的使用方法

栏    目:JAVA代码

下一篇:Springboot中实现策略模式+工厂模式的方法

本文标题:在Java 8中将List转换为Map对象方法

本文地址:http://www.codeinn.net/misctech/218453.html

推荐教程

广告投放 | 联系我们 | 版权申明

重要申明:本站所有的文章、图片、评论等,均由网友发表或上传并维护或收集自网络,属个人行为,与本站立场无关。

如果侵犯了您的权利,请与我们联系,我们将在24小时内进行处理、任何非本站因素导致的法律后果,本站均不负任何责任。

联系QQ:914707363 | 邮箱:codeinn#126.com(#换成@)

Copyright © 2020 代码驿站 版权所有