How to make a new list with a property of an object which is in another list(如何使用另一个列表中的对象的属性创建一个新列表)
问题描述
假设我有一个特定对象的列表:
Imagine that I have a list of certain objects:
List<Student>
我需要生成另一个列表,包括上面列表中Students
的ids
:
And I need to generate another list including the ids
of Students
in the above list:
List<Integer>
避免使用循环,是否可以通过使用 apache 集合 或 guava 来实现?
Avoiding using a loop, is it possible to achieve this by using apache collections or guava?
哪些方法对我的情况有用?
推荐答案
Java 8 的实现方式:-
Java 8 way of doing it:-
List<Integer> idList = students.stream().map(Student::getId).collect(Collectors.toList());
这篇关于如何使用另一个列表中的对象的属性创建一个新列表的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何使用另一个列表中的对象的属性创建一个新列表


基础教程推荐
- 无法复制:“比较方法违反了它的一般约定!" 2022-01-01
- 如何对 Java Hashmap 中的值求和 2022-01-01
- 问题http://apache.org/xml/features/xinclude测试日志4j 2 2022-01-01
- REST Web 服务返回 415 - 不支持的媒体类型 2022-01-01
- Spring AOP错误无法懒惰地为此建议构建thisJoinPoin 2022-09-13
- RabbitMQ:消息保持“未确认"; 2022-01-01
- Struts2 URL 无法访问 2022-01-01
- 存储 20 位数字的数据类型 2022-01-01
- 修改 void 函数的输入参数,然后读取 2022-01-01
- 使用堆栈算法进行括号/括号匹配 2022-01-01