LongStream range(long startInclusive, long endExclusive) returns a sequential ordered LongStream from startInclusive (inclusive) to endExclusive (exclusive) by an incremental step of 1.
Syntax :
static LongStream range(long startInclusive, long endExclusive)
Parameters :
LongStream : A sequence of primitive long-valued elements.
startInclusive : The inclusive initial value.
endExclusive : The exclusive upper bound.
Return Value : A sequential LongStream for the range of long elements.
Example :
import java.util.*;
import java.util.stream.LongStream;
class GFG {
public static void main(String[] args)
{
LongStream stream = LongStream.range(6L, 10L);
stream.forEach(System.out::println);
}
}
|
Note : LongStream range(long startInclusive, long endExclusive) basically works like a for loop. An equivalent sequence of increasing values can be produced sequentially as :
for (int i = startInclusive; i < endExclusive ; i++)
{
...
...
...
}
Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape,
GeeksforGeeks Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we've already empowered, and we're here to do the same for you. Don't miss out -
check it out now!