根据对象属性将java集合拆分为子集合
我有一个 MyObjects 列表... MyObject{ int id,String name}。现在我想将列表拆分为具有相同“id”值的子列表。谁能建议一种有效的方法来做到这一点?
I have a List of MyObjects ... MyObject{ int id,String name}. Now I want to split the list into sublists that have identical "id" values. Can anyone suggest an efficient approach for doing this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(7)
如果您使用 JDK 1.8,您可以使用一个优雅的解决方案,例如:
If you are using JDK 1.8, you can use an elegant solution like:
使用番石榴:
Using Guava:
循环遍历元素,检查其
id
值,并将它们放入以id
作为键的Hashtable
中。这就是 O(N),它是您所能达到的最高效率。Loop through the elements, check their
id
values, and place them in aHashtable
withid
as the key. That's O(N), which is as efficient as you're going to get.使用 JDK 1.8:
Using JDK 1.8:
使用
Map.computeIfAbsent
方法,从 Java 8 开始也可用:Alternative to
Collectors.groupingBy
solution usingMap.computeIfAbsent
method, which is also available starting from Java 8: