DoubleStream of() en Java

DoubleStream de (doble t)

DoubleStream of(double t) devuelve un DoubleStream secuencial que contiene un solo elemento.
Sintaxis:

static DoubleStream of(double t)

Parámetros:

  1. DoubleStream: una secuencia de elementos primitivos de doble valor.
  2. t : representa el elemento único en el DoubleStream.

Valor devuelto: DoubleStream of(double t) devuelve un DoubleStream secuencial que contiene el único elemento especificado.

Ejemplo :

// Java code for DoubleStream of(double t)
// to get a sequential DoubleStream
// containing a single element.
import java.util.*;
import java.util.stream.DoubleStream;
  
class GFG {
  
    // Driver code
    public static void main(String[] args)
    {
        // Creating a DoubleStream having single
        // element only
        DoubleStream stream = DoubleStream.of(8.2);
  
        // Displaying the DoubleStream having 
        // single element
        stream.forEach(System.out::println);
    }
}

Producción :

8.2

DoubleStream de (doble… valores)

DoubleStream of(doble… valores) devuelve un flujo ordenado secuencial cuyos elementos son los valores especificados.
Sintaxis:

static DoubleStream of(double... values)

Parámetros:

  1. DoubleStream: una secuencia de elementos primitivos de doble valor.
  2. valores : representa los elementos de la nueva secuencia.

Valor devuelto: DoubleStream of(doble… valores) devuelve un flujo ordenado secuencial cuyos elementos son los valores especificados.

Ejemplo 1 :

// Java code for DoubleStream of(double... values)
// to get a sequential ordered stream whose
// elements are the specified values.
import java.util.*;
import java.util.stream.DoubleStream;
  
class GFG {
  
    // Driver code
    public static void main(String[] args)
    {
        // Creating an DoubleStream
        DoubleStream stream = DoubleStream.of(8.2, 5.6, 4.1);
  
        // Displaying the sequential ordered stream
        stream.forEach(System.out::println);
    }
}

Producción :

8.2
5.6
4.1

Ejemplo 2:

// Java code for DoubleStream of(double... values)
// to get a sequential ordered stream whose
// elements are the specified values.
import java.util.*;
import java.util.stream.DoubleStream;
  
class GFG {
  
    // Driver code
    public static void main(String[] args)
    {
        // Creating an DoubleStream
        DoubleStream stream = DoubleStream.of(5.2, 4.2, 6.3);
  
        // Storing the count of elements in DoubleStream
        long total = stream.count();
  
        // Displaying the count of elements
        System.out.println(total);
    }
}

Producción :

3

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 *