Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> Java

วิธีการนับสตรีม Java () พร้อมตัวอย่าง


นับจำนวนองค์ประกอบในสตรีมโดยใช้วิธีการนับสตรีม Java ต่อไปนี้คือตัวอย่างการใช้ Java Streams count() วิธีการ -

ตัวอย่าง

import java.util.*;
import java.util.stream.Collectors;
import java.util.stream.Stream;
public class Demo {
   public static void main(String[] args) {
      Stream<String> stream = Stream.of("Kevin", "Jofra","Tom", "Chris", "Liam");
      // count
      long count = stream.collect(Collectors.counting());
      System.out.println("Number of elements in the stream = "+count);
   }
}

ผลลัพธ์

Number of elements in the stream = 5

ให้เรามาดูตัวอย่างอื่นที่เรามีกระแสขององค์ประกอบจำนวนเต็ม -

ตัวอย่าง

import java.util.*;
import java.util.stream.Collectors;
import java.util.stream.Stream;
public class Demo {
   public static void main(String[] args) {
      Stream<Integer> stream = Stream.of(5, 10, 20, 40, 80, 160);
      // count
      long count = stream.collect(Collectors.counting());
      System.out.println("Number of elements in the stream = "+count);
   }
}

ผลลัพธ์

Number of elements in the stream = 6