Java Stream API - count items of a nested list(Java Stream API - 计算嵌套列表的项目)
问题描述
假设我们有一个国家/地区列表:List
,每个国家/地区都有一个对其区域列表的引用:List
(例如以美国为例).像这样的:
Let's assume that we have a list of countries: List<Country>
and each country has a reference to a list of its regions: List<Region>
(e.g. states in the case of the USA). Something like this:
USA
Alabama
Alaska
Arizona
...
Germany
Baden-Württemberg
Bavaria
Brandenburg
...
在普通"Java 中,我们可以计算所有区域,例如这样:
In "plain-old" Java we can count all regions e.g. this way:
List<Country> countries = ...
int regionsCount = 0;
for (Country country : countries) {
if (country.getRegions() != null) {
regionsCount += country.getRegions().size();
}
}
是否可以使用 Java 8 Stream API 实现相同的目标?我想过类似的事情,但我不知道如何使用流 API 的 count()
方法计算嵌套列表的项目:
Is it possible to achieve the same goal with Java 8 Stream API? I thought about something similar to this, but I don't know how to count items of nested lists using count()
method of stream API:
countries.stream().filter(country -> country.getRegions() != null).???
推荐答案
您可以使用 map()
来获取区域列表的 Stream
,然后 mapToInt
获取每个国家/地区的区域数.之后使用 sum()
获取 IntStream
中所有值的总和:
You could use map()
to get a Stream
of region lists and then mapToInt
to get the number of regions for each country. After that use sum()
to get the sum of all the values in the IntStream
:
countries.stream().map(Country::getRegions) // now it's a stream of regions
.filter(rs -> rs != null) // remove regions lists that are null
.mapToInt(List::size) // stream of list sizes
.sum();
注意:在过滤之前使用getRegions
的好处是你不需要多次调用getRegions
.
Note: The benefit of using getRegions
before filtering is that you don't need to call getRegions
more than once.
这篇关于Java Stream API - 计算嵌套列表的项目的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:Java Stream API - 计算嵌套列表的项目
基础教程推荐
- “未找到匹配项"使用 matcher 的 group 方法时 2022-01-01
- 设置 bean 时出现 Nullpointerexception 2022-01-01
- Java Keytool 导入证书后出错,"keytool error: java.io.FileNotFoundException &拒绝访问" 2022-01-01
- 无法使用修饰符“public final"访问 java.util.Ha 2022-01-01
- 在 Libgdx 中处理屏幕的正确方法 2022-01-01
- 减少 JVM 暂停时间 >1 秒使用 UseConcMarkSweepGC 2022-01-01
- 降序排序:Java Map 2022-01-01
- Java:带有char数组的println给出乱码 2022-01-01
- 如何使用 Java 创建 X509 证书? 2022-01-01
- FirebaseListAdapter 不推送聊天应用程序的单个项目 - Firebase-Ui 3.1 2022-01-01