📅  最后修改于: 2023-12-03 14:42:12.596000             🧑  作者: Mango
Java 8中引入了一种新的收集器counting()
,它可以用于计数。我们经常需要对一个集合中的元素进行计数操作,这时就可以使用counting()
方法。
Collector<T, ?, Long> counting()
无参数。
Collector<T, ?, Long>
,它是一个将元素T收集成一个Long
类型数据结构的收集器。
下面的示例代码展示了如何使用counting()
方法统计一个List中的元素个数。
import java.util.Arrays;
import java.util.List;
import java.util.stream.Collectors;
public class CountingExample {
public static void main(String[] args) {
List<Integer> list = Arrays.asList(1, 2, 3, 4, 5, 6);
Long count = list.stream().collect(Collectors.counting());
System.out.println("Count: " + count);
}
}
输出:
Count: 6
在以上代码中,我们首先创建了一个包含6个元素的List对象,并使用collect()
方法和counting()
收集器将List中的元素收集到一个long
变量中。
使用counting()
方法,不仅可以计算List中的元素个数,也可以统计任何集合中的元素个数。