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:计算Double流中不同元素的值。
// 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
相关用法
- Java DoubleStream min()用法及代码示例
- Java DoubleStream max()用法及代码示例
- Java DoubleStream builder()用法及代码示例
- Java DoubleStream noneMatch()用法及代码示例
- Java DoubleStream boxed()用法及代码示例
- Java DoubleStream count()用法及代码示例
- Java DoubleStream allMatch()用法及代码示例
- Java DoubleStream peek()用法及代码示例
- Java DoubleStream anyMatch()用法及代码示例
- Java DoubleStream filter()用法及代码示例
- Java DoubleStream empty()用法及代码示例
- Java DoubleStream average()用法及代码示例
- Java DoubleStream limit()用法及代码示例
- Java DoubleStream.Builder add(double t)用法及代码示例
- Java DoubleStream reduce(double identity, DoubleBinaryOperator op)用法及代码示例
注:本文由纯净天空筛选整理自Sahil_Bansall大神的英文原创作品 DoubleStream distinct() in Java with examples。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。