Java 8 中的 Collectors counting() 方法

java 8object oriented programmingprogramming

Java 8 Collectors 类的 counting() 方法返回一个接受类型 T 元素的 Collector,该 Collector 计算输入元素的数量。

语法如下 −

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

相关文章