IntStream mapToDouble() en Java

IntStream mapToDouble() devuelve un DoubleStream que consta de los resultados de aplicar la función dada a los elementos de esta secuencia.

Nota: IntStream mapToDouble() 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:

DoubleStream mapToDouble(IntToDoubleFunction mapper)

Parámetros:

  1. DoubleStream: una secuencia de elementos primitivos de doble valor. Esta es la doble especialización primitiva de Stream .
  2. mapeador: una función sin estado para aplicar a cada elemento.

Valor de retorno: la función devuelve un DoubleStream que consta de los resultados de aplicar la función dada a los elementos de esta secuencia.

Ejemplo 1 :

// Java code for DoubleStream mapToDouble
// (IntToDoubleFunction mapper)
import java.util.*;
import java.util.stream.IntStream;
import java.util.stream.DoubleStream;
  
class GFG {
  
    // Driver code
    public static void main(String[] args)
    {
        // Creating an IntStream
        IntStream stream = IntStream.of(2, 4, 6, 8, 10);
  
        // Using DoubleStream mapToLong(IntToDoubleFunction mapper)
        // to return a DoubleStream consisting of the
        // results of applying the given function to
        // the elements of this stream.
        DoubleStream stream1 = stream.mapToDouble(num -> (double)num);
  
        // Displaying the elements in stream1
        stream1.forEach(System.out::println);
    }
}

Producción :

2.0
4.0
6.0
8.0
10.0

Ejemplo 2:

// Java code for DoubleStream mapToDouble
// (IntToDoubleFunction mapper)
import java.util.*;
import java.util.stream.IntStream;
import java.util.stream.DoubleStream;
  
class GFG {
  
    // Driver code
    public static void main(String[] args)
    {
        // Creating an IntStream
        IntStream stream = IntStream.range(5, 10);
  
        // Using DoubleStream mapToLong(IntToDoubleFunction mapper)
        // to return a DoubleStream consisting of the
        // results of applying the given function to
        // the elements of this stream.
        DoubleStream stream1 = stream.mapToDouble(num -> (double)num / 3);
  
        // Displaying the elements in stream1
        stream1.forEach(System.out::println);
    }
}

Producción :

1.6666666666666667
2.0
2.3333333333333335
2.6666666666666665
3.0

Ejemplo 3:

// Java code for DoubleStream mapToDouble
// (IntToDoubleFunction mapper)
import java.util.*;
import java.util.stream.IntStream;
import java.util.stream.DoubleStream;
  
class GFG {
  
    // Driver code
    public static void main(String[] args)
    {
        // Creating an IntStream
        IntStream stream = IntStream.range(5, 10);
  
        // Using DoubleStream mapToLong(IntToDoubleFunction mapper)
        // to return a DoubleStream consisting of the
        // results of applying the given function to
        // the elements of this stream.
        DoubleStream stream1 = stream.mapToDouble(Math::sin);
  
        // Displaying the elements in stream1
        stream1.forEach(System.out::println);
    }
}

Producción :

-0.9589242746631385
-0.27941549819892586
0.6569865987187891
0.9893582466233818
0.4121184852417566

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

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *