jdk8 list转map
时间: 2023-10-12 08:03:08 浏览: 94
在Java 8中,可以使用Stream流以及Collectors类中的toMap方法将List转换为Map。一种常见的方式是使用Collectors.toMap方法进行转换。例如,如果你有一个List<Account>的对象列表,你可以使用以下代码将其转换为以账户ID为键,用户名为值的Map:
```java
public Map<Long, String> getIdNameMap(List<Account> accounts) {
return accounts.stream().collect(Collectors.toMap(Account::getId, Account::getUsername));
}
```
另外,如果你想以某个字段进行分组,并将对象实体本身作为值,你可以设置toMap方法的第二个参数为实体本身。例如,如果你有一个List<Account>的对象列表,并希望以账户ID进行分组,你可以使用以下代码:
```java
public Map<Long, Account> getIdAccountMap(List<Account> accounts) {
return accounts.stream().collect(Collectors.toMap(Account::getId, account -> account));
}
```
以上是两种常见的将List转换为Map的方式。使用Java 8的Stream和Collectors类,可以更加简洁和高效地进行这种转换操作。<span class="em">1</span><span class="em">2</span><span class="em">3</span>
#### 引用[.reference_title]
- *1* *2* *3* [Java8中list转map方法](https://blog.csdn.net/Alecor/article/details/124388252)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v92^chatsearchT0_1"}}] [.reference_item style="max-width: 100%"]
[ .reference_list ]
阅读全文