Java中的 IntStream distinct() 示例
IntStream distinct()是Java.util.stream.IntStream 中的一个方法。此方法返回由不同元素组成的流。这是一个有状态的中间操作,即,它可以在处理新元素时合并来自先前看到的元素的状态。
句法 :
IntStream distinct()
Where, IntStream is a sequence of
primitive int-valued elements.
下面给出了一些示例,以更好地理解该函数。
示例 1:打印整数流的不同元素。
// Java code for IntStream distinct()
import java.util.*;
import java.util.stream.IntStream;
class GFG {
// Driver code
public static void main(String[] args) {
// creating a stream
IntStream stream = IntStream.of(2, 3, 3, 5, 6, 6, 8);
// Displaying only distinct elements
// using the distinct() method
stream.distinct().forEach(System.out::println);
}
}
输出 :
2
3
5
6
8
示例 2:计算流中不同元素的值。
// Java code for IntStream distinct() method
// to count the number of distinct
// elements in given stream
import java.util.*;
import java.util.stream.IntStream;
class GFG {
// Driver code
public static void main(String[] args) {
// creating a stream
IntStream stream = IntStream.of(2, 3, 3, 5, 6, 6, 8);
// storing the count of distinct elements
// in a variable named total
long total = stream.distinct().count();
// displaying the total number of elements
System.out.println(total);
}
}
输出 :
5