The java.util.ArrayDeque.addFirst(
Object element) method in Java is used to insert a specific element at the front of this deque.
Syntax:
Array_Deque.addFirst(Object element)
Parameters: The parameter
element is of the type ArrayDeque and refers to the element to be added.
Return Value: The function does not return any value.
Exceptions: The method throws
NullPointerException if the passed parameter is NULL.
Below programs illustrate the Java.util.ArrayDeque.addFirst() method:
Program 1:
Output:
ArrayDeque: [10, 15, 30, 20, 5]
ArrayDeque_front_addition: [70, 60, 50, 40, 10, 15, 30, 20, 5]
Final ArrayDeque: [70, 60, 50, 40, 10, 15, 30, 20, 5, 1, 2, 3]
Program 2:
Output:
ArrayDeque: [Welcome, To, Geeks, 4, Geeks]
ArrayDeque_front_addition: [Hello, World, GFG, Welcome, To, Geeks, 4, Geeks]
Final ArrayDeque: [Hello, World, GFG, Welcome, To, Geeks, 4, Geeks, Coding, At, BEST]