LongStream range(long startInclusive, long endExclusive) devuelve un LongStream ordenado secuencialmente desde startInclusive (inclusivo) hasta endExclusive (exclusivo) en un paso incremental de 1.
Sintaxis:
static LongStream range(long startInclusive, long endExclusive)
Parámetros:
Valor devuelto: un LongStream secuencial para el rango de elementos largos.
Ejemplo :
// Implementation of LongStream range // (long startInclusive, long endExclusive) import java.util.*; import java.util.stream.LongStream; class GFG { // Driver code public static void main(String[] args) { // Creating an LongStream LongStream stream = LongStream.range(6L, 10L); // 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 LongStream (largo inicio incluido, largo final exclusivo) 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