IntStream range(int startInclusive, int endExclusive) devuelve un IntStream ordenado secuencialmente desde startInclusive (inclusivo) hasta endExclusive (exclusivo) en un paso incremental de 1.
Sintaxis:
static IntStream range(int startInclusive, int endExclusive)
Parámetros:
Valor devuelto: un IntStream secuencial para el rango de elementos int.
Ejemplo :
// Implementation of IntStream range // (int startInclusive, int endExclusive) import java.util.*; import java.util.stream.IntStream; class GFG { // Driver code public static void main(String[] args) { // Creating an IntStream IntStream stream = IntStream.range(6, 10); // Displaying the elements in range // including the lower bound but // excluding the upper bound stream.forEach(System.out::println); } }
Producción:
6 7 8 9
Nota: el rango IntStream (int startInclusive, int endExclusive) básicamente funciona como un bucle for. Una secuencia equivalente de valores crecientes se puede producir secuencialmente como:
for (int i = startInclusive; i < endExclusive ; 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