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


Java IntStream rangeClosed()用法及代碼示例


IntStream rangeClosed(int startInclusive,int endInclusive)以增量步長1返回一個從startInclusive(包括)到endInclusive(包括)的IntStream。

用法:

static IntStream rangeClosed(int startInclusive,   int endInclusive)

參數:


  1. IntStream : 原始整數值元素的序列。
  2. startInclusive : 包含的初始值。
  3. endInclusive : 包含上限。

返回值:一個int元素範圍的順序IntStream。

例:

// Implementation of IntStream rangeClosed 
// (int startInclusive, int endInclusive) 
import java.util.*; 
import java.util.stream.IntStream; 
  
class GFG { 
  
    // Driver code 
    public static void main(String[] args) 
    { 
        // Creating an IntStream 
        IntStream stream = IntStream.rangeClosed(-4, 3); 
  
        // Displaying the elements in range 
        // including the lower and upper bound 
        stream.forEach(System.out::println); 
    } 
}
輸出:
-4
-3
-2
-1
0
1
2
3

注意:IntStream rangeClosed(int startInclusive,int endInclusive)本質上類似於for循環。可以依次產生一個等效的遞增值序列,如下所示:

for (int i = startInclusive; i <= endInclusive ; i++) 
{
 ...
 ...
 ...
}


相關用法


注:本文由純淨天空篩選整理自Sahil_Bansall大神的英文原創作品 IntStream rangeClosed() in Java。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。