VOOZH about

URL: https://www.geeksforgeeks.org/java/intstream-rangeclosed-java/

⇱ IntStream rangeClosed() in Java - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

IntStream rangeClosed() in Java

Last Updated : 6 Dec, 2018
IntStream rangeClosed(int startInclusive, int endInclusive) returns an IntStream from startInclusive (inclusive) to endInclusive (inclusive) by an incremental step of 1. Syntax :
static IntStream rangeClosed(int startInclusive, int endInclusive)
Parameters :
  1. IntStream : A sequence of primitive int-valued elements.
  2. startInclusive : The inclusive initial value.
  3. endInclusive : The inclusive upper bound.
Return Value : A sequential IntStream for the range of int elements. Example :
Output:
-4
-3
-2
-1
0
1
2
3
Note : IntStream rangeClosed(int startInclusive, int endInclusive) basically works like a for loop. An equivalent sequence of increasing values can be produced sequentially as :
for (int i = startInclusive; i <= endInclusive ; i++) 
{
 ...
 ...
 ...
}
Comment