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


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


(int t)的IntStream

(int t)的IntStream返回包含单个元素的顺序IntStream。
用法:

static IntStream of(int t)

参数:

  1. IntStream : 原始整数值元素的序列。
  2. t : 表示IntStream中的单个元素。

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


例:

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

输出:

-7

IntStream of(int…values)

IntStream of(int…values)返回其元素为指定值的顺序有序流。
用法:

static IntStream of(int... values)

参数:

  1. IntStream : 原始整数值元素的序列。
  2. values : 表示新流的元素。

返回值:IntStream of(int ... values)返回一个顺序有序的流,其元素为指定值。

示例1:

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

输出:

-7
-9
-11

示例2:

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

输出:

3


相关用法


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