LongStream mapToInt() devuelve un IntStream que consta de los resultados de aplicar la función dada a los elementos de esta secuencia.
Nota: LongStream mapToInt() es una operación intermedia. Estas operaciones son siempre perezosas. Las operaciones intermedias se invocan en una instancia de Stream y, una vez que finalizan su procesamiento, dan una instancia de Stream como salida.
Sintaxis:
LongStream mapToInt(LongToIntFunction mapper)
Parámetros:
- LongStream: una secuencia de elementos primitivos de valor largo. Esta es la larga especialización primitiva de Stream .
- mapeador: una función sin estado para aplicar a cada elemento.
Valor devuelto: la función devuelve un IntStream que consta de los resultados de aplicar la función dada a los elementos de esta secuencia.
Ejemplo 1 :
// Java code for LongStream mapToInt // (LongToIntFunction mapper) import java.util.*; import java.util.stream.IntStream; import java.util.stream.LongStream; class GFG { // Driver code public static void main(String[] args) { // Creating a LongStream LongStream stream = LongStream.of(2L, 4L, 6L, 8L, 10L); // Using LongStream mapToInt(LongToIntFunction mapper) // to return an IntStream consisting of the // results of applying the given function to // the elements of this stream. IntStream stream1 = stream.mapToInt(num -> (int) num); // Displaying the elements in stream1 stream1.forEach(System.out::println); } }
Producción :
2 4 6 8 10
Ejemplo 2:
// Java code for LongStream mapToInt // (LongToIntFunction mapper) import java.util.*; import java.util.stream.IntStream; import java.util.stream.LongStream; class GFG { // Driver code public static void main(String[] args) { // Creating a LongStream LongStream stream = LongStream.of(1L, 2L, 3L, 4L, 5L); // Using LongStream mapToInt(LongToIntFunction mapper) // to return an IntStream consisting of the // results of applying the given function to // the elements of this stream. IntStream stream1 = stream.mapToInt(num -> (int) num + Integer.MAX_VALUE); // Displaying the elements in stream1 stream1.forEach(System.out::println); } }
Producción :
-2147483648 -2147483647 -2147483646 -2147483645 -2147483644
Ejemplo 3:
// Java code for LongStream mapToInt // (LongToIntFunction mapper) import java.util.*; import java.util.stream.IntStream; import java.util.stream.LongStream; class GFG { // Driver code public static void main(String[] args) { // Creating a LongStream LongStream stream = LongStream.range(2L, 7L); // Using LongStream mapToInt(LongToIntFunction mapper) // to return an IntStream consisting of the // results of applying the given function to // the elements of this stream. IntStream stream1 = stream.mapToInt(num -> (int) num - 2); // Displaying the elements in stream1 stream1.forEach(System.out::println); } }
Producción :
0 1 2 3 4
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