Java.util.ArrayDeque.addLast() Method
Advertisements
Description
The java.util.ArrayDeque.addLast(E e) method inserts the specified element E at the end of the deque.
Declaration
Following is the declaration for java.util.ArrayDeque.addLast() method
public void addLast(E e)
Parameters
e -- The element to be added at the end.
Return Value
This method does not return any value.
Exception
NullPointerException -- if the specified element is null.
Example
The following example shows the usage of java.util.ArrayDeque.addLast(E) method.
package com.tutorialspoint;
import java.util.ArrayDeque;
import java.util.Deque;
public class ArrayDequeDemo {
public static void main(String[] args) {
// create an empty array deque with an initial capacity
Deque<Integer> deque = new ArrayDeque<Integer>(8);
// use add() method to add elements in the deque
deque.add(20);
deque.add(30);
deque.add(20);
deque.add(18);
deque.add(22);
deque.add(24);
// the values will be printed in the same order
deque.addLast(10);
deque.addLast(12);
// let us print all the elements available in deque
for (Integer number : deque) {
System.out.println("Number = " + number);
}
}
}
Let us compile and run the above program, this will produce the following result:
Number = 20 Number = 30 Number = 20 Number = 18 Number = 22 Number = 24 Number = 10 Number = 12