当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Java DoubleStream of()用法及代码示例


DoubleStream of(double t)

DoubleStream of(double t)返回包含单个元素的顺序DoubleStream。
用法:

static DoubleStream of(double t)

参数:

  1. DoubleStream : 一系列原始双值元素。
  2. t : 表示DoubleStream中的单个元素。

返回值:DoubleStream of(double t)返回包含单个指定元素的顺序DoubleStream。


例:

// Java code for DoubleStream of(double t) 
// to get a sequential DoubleStream 
// containing a single element. 
import java.util.*; 
import java.util.stream.DoubleStream; 
  
class GFG { 
  
    // Driver code 
    public static void main(String[] args) 
    { 
        // Creating a DoubleStream having single 
        // element only 
        DoubleStream stream = DoubleStream.of(8.2); 
  
        // Displaying the DoubleStream having  
        // single element 
        stream.forEach(System.out::println); 
    } 
}

输出:

8.2

DoubleStream of(双精度…值)

DoubleStream of(双精度…值)返回其元素为指定值的顺序有序流。
用法:

static DoubleStream of(double... values)

参数:

  1. DoubleStream : 一系列原始双值元素。
  2. values : 表示新流的元素。

返回值:DoubleStream of(double…values)返回一个顺序有序的流,其元素为指定值。

示例1:

// Java code for DoubleStream of(double... values) 
// to get a sequential ordered stream whose 
// elements are the specified values. 
import java.util.*; 
import java.util.stream.DoubleStream; 
  
class GFG { 
  
    // Driver code 
    public static void main(String[] args) 
    { 
        // Creating an DoubleStream 
        DoubleStream stream = DoubleStream.of(8.2, 5.6, 4.1); 
  
        // Displaying the sequential ordered stream 
        stream.forEach(System.out::println); 
    } 
}

输出:

8.2
5.6
4.1

示例2:

// Java code for DoubleStream of(double... values) 
// to get a sequential ordered stream whose 
// elements are the specified values. 
import java.util.*; 
import java.util.stream.DoubleStream; 
  
class GFG { 
  
    // Driver code 
    public static void main(String[] args) 
    { 
        // Creating an DoubleStream 
        DoubleStream stream = DoubleStream.of(5.2, 4.2, 6.3); 
  
        // Storing the count of elements in DoubleStream 
        long total = stream.count(); 
  
        // Displaying the count of elements 
        System.out.println(total); 
    } 
}

输出:

3


相关用法


注:本文由纯净天空筛选整理自Sahil_Bansall大神的英文原创作品 DoubleStream of() in Java。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。