Deque.offerLast(E e) has the following syntax.
boolean offerLast(E e)
In the following code shows how to use Deque.offerLast(E e) method.
//from w w w .j a v a 2s . com import java.util.ArrayDeque; import java.util.Deque; public class Main { public static void main(String[] args) { Deque<Integer> deque = new ArrayDeque<Integer> (8); deque.add(1); deque.add(2); deque.add(3); deque.add(4); deque.offerLast(5); System.out.println(deque); } }
The code above generates the following result.