Saturday, February 7, 2026
HomeLanguagesJavaIntStream rangeClosed() in Java

IntStream rangeClosed() in Java

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 :




// Implementation of IntStream rangeClosed
// (int startInclusive, int endInclusive)
import java.util.*;
import java.util.stream.IntStream;
  
class GFG {
  
    // Driver code
    public static void main(String[] args)
    {
        // Creating an IntStream
        IntStream stream = IntStream.rangeClosed(-4, 3);
  
        // Displaying the elements in range
        // including the lower and upper bound
        stream.forEach(System.out::println);
    }
}


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++) 
{
 ...
 ...
 ...
}
Dominic
Dominichttp://wardslaus.com
infosec,malicious & dos attacks generator, boot rom exploit philanthropist , wild hacker , game developer,
RELATED ARTICLES

1 COMMENT

Most Popular

Dominic
32492 POSTS0 COMMENTS
Milvus
126 POSTS0 COMMENTS
Nango Kala
6863 POSTS0 COMMENTS
Nicole Veronica
11987 POSTS0 COMMENTS
Nokonwaba Nkukhwana
12079 POSTS0 COMMENTS
Shaida Kate Naidoo
6996 POSTS0 COMMENTS
Ted Musemwa
7239 POSTS0 COMMENTS
Thapelo Manthata
6947 POSTS0 COMMENTS
Umr Jansen
6934 POSTS0 COMMENTS