IntStream rangeClosed(int startInclusive, int endInclusive) devuelve un IntStream desde startInclusive (inclusive) hasta endInclusive (inclusive) en un paso incremental de 1.
Sintaxis:
static IntStream rangeClosed(int startInclusive, int endInclusive)
Parámetros:
- IntStream: una secuencia de elementos primitivos de valor int.
- startInclusive : el valor inicial inclusivo.
- endInclusive : el límite superior inclusivo.
Valor devuelto: un IntStream secuencial para el rango de elementos int.
Ejemplo :
// 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); } }
Producción:
-4 -3 -2 -1 0 1 2 3
Nota: IntStream rangeClosed(int startInclusive, int endInclusive) básicamente funciona como un bucle for. Una secuencia equivalente de valores crecientes se puede producir secuencialmente como:
for (int i = startInclusive; i <= endInclusive ; i++) { ... ... ... }
Publicación traducida automáticamente
Artículo escrito por Sahil_Bansall y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA