Skip to content
Related Articles
Get the best out of our app
GeeksforGeeks App
Open App
geeksforgeeks
Browser
Continue

Related Articles

DoubleStream toArray() in Java

Improve Article
Save Article
Like Article
Improve Article
Save Article
Like Article

DoubleStream toArray() returns an array containing the elements of this stream. It is a terminal operation i.e, it may traverse the stream to produce a result or a side-effect. After the terminal operation is performed, the stream pipeline is considered consumed, and can no longer be used.

Syntax :

double[] toArray()

Return Value : The function returns an array containing the elements of this stream.

Example :




// Java code for DoubleStream toArray()
import java.util.*;
import java.util.stream.DoubleStream;
  
class GFG {
  
    // Driver code
    public static void main(String[] args)
    {
        // Creating a DoubleStream
        DoubleStream stream = DoubleStream.of(1.2, 3.3,
                                         5.4, 7.1, 9.2);
  
        // Using DoubleStream toArray()
        double[] arr = stream.toArray();
  
        // Displaying the elements in array arr
        System.out.println(Arrays.toString(arr));
    }
}

Output :

[1.2, 3.3, 5.4, 7.1, 9.2]
My Personal Notes arrow_drop_up
Last Updated : 06 Dec, 2018
Like Article
Save Article
Similar Reads
Related Tutorials