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