LongStream rangeClosed(long startInclusive, long endInclusive) devuelve un LongStream desde startInclusive (inclusive) hasta endInclusive (inclusive) en un paso incremental de 1.
Sintaxis:
static LongStream rangeClosed(long startInclusive, long endInclusive)
Parámetros:
- LongStream: una secuencia de elementos primitivos de valor largo.
- startInclusive : el valor inicial inclusivo.
- endInclusive : el límite superior inclusivo.
Valor devuelto: un LongStream secuencial para el rango de elementos largos.
Ejemplo :
// Implementation of LongStream rangeClosed // (long startInclusive, long endInclusive) import java.util.*; import java.util.stream.LongStream; class GFG { // Driver code public static void main(String[] args) { // Creating an LongStream LongStream stream = LongStream.rangeClosed(-4L, 3L); // 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: LongStream rangeClosed (long startInclusive, long 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