Java 8 中的 Collectors counting() 方法
Java 8 Collectors 类的 counting() 方法返回一个接受类型为 T 的收集器,该收集器可计算输入元素的数量。
语法如下 −
static <T> Collector<T,?,Long> counting()
在此,参数 −
T − 输入元素的类型
Long − 此类的原始类型 long 值,表示一个对象
要在 Java 中使用 Collectors 类,需要导入以下包 −
import java.util.stream.Collectors;
以下是 Java 8 中实现 counting() 方法的示例 −
示例
import java.util.stream.Collectors; import java.util.stream.Stream; public class Demo { public static void main(String[] args) { Stream<String> stream = Stream.of("25", "50", "75", "100", "125", "150", "200"); long res = stream.collect(Collectors.counting()); System.out.println("Count of elements in the stream = "+res); } }
输出
Count of elements in the stream = 7
广告