IntStream range(int startInclusive,int endExclusive)以1为增量步长从startInclusive(包括)到endExclusive(不包括)返回顺序的有序IntStream。
用法:
static IntStream range(int startInclusive, int endExclusive)
参数:
- IntStream : 原始整数值元素的序列。
- startInclusive : 包含的初始值。
- endExclusive : 专属上限。
返回值:一个int元素范围的顺序IntStream。
例:
// Implementation of IntStream range
// (int startInclusive, int endExclusive)
import java.util.*;
import java.util.stream.IntStream;
class GFG {
// Driver code
public static void main(String[] args)
{
// Creating an IntStream
IntStream stream = IntStream.range(6, 10);
// Displaying the elements in range
// including the lower bound but
// excluding the upper bound
stream.forEach(System.out::println);
}
}
输出:
6 7 8 9
注意:IntStream范围(int startInclusive,int endExclusive)本质上像for循环一样工作。可以依次产生一个等效的递增值序列,如下所示:
for (int i = startInclusive; i < endExclusive ; i++) { ... ... ... }
相关用法
- Java IntStream of()用法及代码示例
- Java IntStream sum()用法及代码示例
- Java IntStream skip()用法及代码示例
- Java IntStream sequential()用法及代码示例
- Java IntStream boxed()用法及代码示例
- Java IntStream builder()用法及代码示例
- Java IntStream mapToDouble()用法及代码示例
- Java IntStream concat()用法及代码示例
- Java IntStream asDoubleStream()用法及代码示例
- Java IntStream parallel()用法及代码示例
- Java IntStream mapToLong()用法及代码示例
- Java IntStream summaryStatistics()用法及代码示例
- Java IntStream asLongStream()用法及代码示例
- Java IntStream limit()用法及代码示例
- Java IntStream mapToObj()用法及代码示例
注:本文由纯净天空筛选整理自Sahil_Bansall大神的英文原创作品 IntStream range() in Java。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。