Friday, February 6, 2026
HomeLanguagesJavaArrayDeque toArray() Method in Java

ArrayDeque toArray() Method in Java

The java.util.ArrayDeque.toArray() method is used to form an array of the same elements as that of the Deque. Basically, the method copies all the element from this deque to a new array.

Syntax:

Object[] arr = Array_Deque.toArray()

Parameters: The method does not take any parameters.

Return Value: The method returns an array containing the elements present in the ArrayDeque.

Below programs illustrate the java.util.ArrayDeque.toArray() method.
Program 1:




// Java code to illustrate toArray()
import java.util.*;
  
public class ArrayDequeDemo {
    public static void main(String args[])
    {
        // Creating an empty ArrayDeque
        Deque<String> de_que = new ArrayDeque<String>();
  
        // Use add() method to add elements into the Deque
        de_que.add("Welcome");
        de_que.add("To");
        de_que.add("Geeks");
        de_que.add("For");
        de_que.add("Geeks");
  
        // Displaying the ArrayDeque
        System.out.println("The ArrayDeque: " + de_que);
  
        // Creating the array and using toArray()
        Object[] arr = de_que.toArray();
  
        System.out.println("The array is:");
        for (int j = 0; j < arr.length; j++)
            System.out.println(arr[j]);
    }
}


Output:

The ArrayDeque: [Welcome, To, Geeks, For, Geeks]
The array is:
Welcome
To
Geeks
For
Geeks

Program 2:




// Java code to illustrate toArray()
import java.util.*;
  
public class ArrayDequeDemo {
    public static void main(String args[])
    {
        // Creating an empty ArrayDeque
        Deque<Integer> de_que = new ArrayDeque<Integer>();
  
        // Use add() method to add elements into the Deque
        de_que.add(10);
        de_que.add(15);
        de_que.add(30);
        de_que.add(20);
        de_que.add(5);
        de_que.add(25);
  
        // Displaying the ArrayDeque
        System.out.println("The ArrayDeque: " + de_que);
  
        // Creating the array and using toArray()
        Object[] arr = de_que.toArray();
  
        System.out.println("The array is:");
        for (int j = 0; j < arr.length; j++)
            System.out.println(arr[j]);
    }
}


Output:

The ArrayDeque: [10, 15, 30, 20, 5, 25]
The array is:
10
15
30
20
5
25
RELATED ARTICLES

Most Popular

Dominic
32489 POSTS0 COMMENTS
Milvus
126 POSTS0 COMMENTS
Nango Kala
6862 POSTS0 COMMENTS
Nicole Veronica
11983 POSTS0 COMMENTS
Nokonwaba Nkukhwana
12073 POSTS0 COMMENTS
Shaida Kate Naidoo
6995 POSTS0 COMMENTS
Ted Musemwa
7236 POSTS0 COMMENTS
Thapelo Manthata
6946 POSTS0 COMMENTS
Umr Jansen
6930 POSTS0 COMMENTS