VOOZH about

URL: https://www.geeksforgeeks.org/java/java-guava-doubles-toarray-method-with-examples/

⇱ Java Guava | Doubles.toArray() method with Examples - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

Java Guava | Doubles.toArray() method with Examples

Last Updated : 11 Jul, 2025
The toArray() method of Doubles Class in the Guava library is used to convert the double values, passed as the parameter to this method, into a Double Array. These double values are passed as a Collection to this method. This method returns a Double array. Syntax:
public static double[] toArray(Collection<? extends Number> collection)
Parameters: This method accepts a mandatory parameter collection which is the collection of double values to be converted in to a Double array. Return Value: This method returns a double array containing the same values as a collection, in the same order. Exceptions: This method throws NullPointerException if the passed collection or any of its elements is null. Below programs illustrate the use of toArray() method: Example 1 :
Output:
[1.2, 2.3, 3.4, 4.5, 5.6]
Example 2 :
Comment