Dada la tarea es generar una secuencia infinita secuencial desordenada de doble en Java.
Esto se puede hacer de las siguientes maneras:
- Usando DoubleStream.iterate() :
- Usando el método DoubleStream.iterate(), itere el DoubleStream con i incrementando el valor con 1.
- Imprime el DoubleStream con la ayuda del método forEach().
import
java.util.stream.*;
public
class
GFG {
// Main method
public
static
void
main(String[] args)
{
DoubleStream
// Iterate the DoubleStream with i
// by incrementing the value with 1
.iterate(
0
, i -> i +
1
)
// Print the DoubleStream
// using forEach() method.
.forEach(System.out::println);
}
}
Producción:
0.0 1.0 2.0 3.0 4.0 5.0 6.0 . . .
- Usando Random.doubles() :
- Obtenga el siguiente doble usando el método doubles()
- Imprime el DoubleStream con la ayuda del método forEach().
import
java.util.stream.*;
import
java.util.*;
public
class
GFG {
// Main method
public
static
void
main(String[] args)
{
// Create a Random object
Random random =
new
Random();
random
// Get the next double
// using doubles() method
.doubles()
// Print the DoubleStream
// using forEach() method.
.forEach(System.out::println);
}
}
Producción:
0.3668625445505631 0.4385898887922953 0.23333911864591927 0.7134958163360963 0.6945667694181287 0.6898427735417596 0.9243923588584183 . . .
- Usando el método DoubleStream.generate() :
- Genere el siguiente doble usando DoubleStream.generate() y Random.nextDouble()
- Imprime el DoubleStream con la ayuda del método forEach().
import
java.util.stream.*;
import
java.util.*;
public
class
GFG {
// Main method
public
static
void
main(String[] args)
{
// Create a Random object
Random random =
new
Random();
DoubleStream
// Generate the next double
// using DoubleStream.generate()
// and Random.nextDouble()
.generate(random::nextDouble)
// Print the DoubleStream
// using forEach() method.
.forEach(System.out::println);
}
}
Producción:
0.025801080723973246 0.5115037630832635 0.030815898624858784 0.5441584143944648 0.6984267528746901 0.5821292304544626 . . .
Publicación traducida automáticamente
Artículo escrito por RishabhPrabhu y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA