DoubleStream limit(long maxSize) example
Description
DoubleStream limit(long maxSize)
returns a stream consisting of the
elements of this stream, truncated to be no longer than maxSize in length.
Syntax
limit
has the following syntax.
DoubleStream limit(long maxSize)
Example
The following example shows how to use limit
.
import java.util.stream.DoubleStream;
//from ww w . j a v a2 s . c o m
public class Main {
public static void main(String[] args) {
DoubleStream b = DoubleStream.of(1.1,2.2,3.3,4.4,5.5);
b.limit(2).forEach(System.out::println);
}
}
The code above generates the following result.