當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。