iterate over a range of numbers using stream

List<Object> list = IntStream.range(0,4).mapToObj(i-> /*do stuff*/ ).collect(Collectors.toList());
How to iterate over a list of integers to return a list of some object

Be the first to comment

You can use [html][/html], [css][/css], [php][/php] and more to embed the code. Urls are automatically hyperlinked. Line breaks and paragraphs are automatically generated.