VOOZH about

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

⇱ IntStream range() in Java - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

IntStream range() in Java

Last Updated : 6 Dec, 2018
IntStream range(int startInclusive, int endExclusive) returns a sequential ordered IntStream from startInclusive (inclusive) to endExclusive (exclusive) by an incremental step of 1. Syntax :
static IntStream range(int startInclusive, int endExclusive)
Parameters :
  • IntStream : A sequence of primitive int-valued elements.
  • startInclusive : The inclusive initial value.
  • endExclusive : The exclusive upper bound.
  • Return Value : A sequential IntStream for the range of int elements. Example :
    Output:
    6
    7
    8
    9
    
    Note : IntStream range(int startInclusive, int 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++) 
    {
     ...
     ...
     ...
    }
    
    Comment