limit()
的IntStream类的方法用来返回包括该流的元素流,截断成比MAXSIZE不再长度。这里,maxSize是参数。
语法如下
IntStream limit(long maxSize)
在这里,maxSize参数是流受限的元素数。
首先,使用该range()
方法创建一个IntStream来设置元素的顺序
IntStream intStream = IntStream.range(20, 40);
现在,使用limit()
参数为maxSize的方法,即流被限制为的元素数
intStream.limit(8)
以下是limit()
在Java中实现IntStream方法的示例
import java.util.*; import java.util.stream.IntStream; public class Demo { public static void main(String[] args) { IntStream intStream = IntStream.range(20, 40); intStream.limit(8).forEach(System.out::println); } }
输出结果
20 21 22 23 24 25 26 27