Java DoubleStream distinct()方法及实例
DoubleStream distinct() 是java.util.stream.DoubleStream中的一个方法。该方法返回一个由不同元素组成的流。这是一个 有状态的中间操作 ,也就是说,在处理新的元素时,它可能会纳入以前看到的元素的状态。它们可能需要在产生一个结果之前处理整个输入。例如,在看到流中的所有元素之前,人们无法从排序中产生任何结果。
语法:
DoubleStream distinct()
Where, DoubleStream is a sequence of
primitive long-valued elements.
例1: 打印Double流的不同元素。
// Java code for DoubleStream distinct()
import java.util.*;
import java.util.stream.DoubleStream;
class GFG {
// Driver code
public static void main(String[] args)
{
// creating a stream
DoubleStream stream = DoubleStream.of(2.2, 3.3, 3.3,
5.6, 6.7, 6.7, 8.0);
// Displaying only distinct elements
// using the distinct() method
stream.distinct().forEach(System.out::println);
}
}
输出:
2.2
3.3
5.6
6.7
8.0
例子2: 计算一个双流中不同元素的值。
// Java code for DoubleStream distinct() method
// to count the number of distinct
// elements in given stream
import java.util.*;
import java.util.stream.DoubleStream;
class GFG {
// Driver code
public static void main(String[] args)
{
// creating a stream
DoubleStream stream = DoubleStream.of(2.2, 3.3, 3.3,
5.6, 6.7, 6.7, 8.0);
// 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