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


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。