The java.util.ArrayDeque.removeLastOccurrence(
Object) method in Java is used to remove the last occurrence of a specific element from this deque. If the element is present only once, then that element is removed and true is returned. If no such element is removed then false is returned.
Syntax:
Array_Deque.removeLastOccurrence(Object O)
Parameters: The method takes one parameter
O of ArrayDeque type which refers to the element whose last occurrence is to be removed.
Return Value: This method returns true if the element is present in the Deque else it returns false.
Below programs illustrate the Java.util.ArrayDeque.removeLastOccurrence() method:
Program 1:
Output:
Initial ArrayDeque: [Welcome, To, Geeks, For, Geeks]
ArrayDeque after removing elements: [Welcome, To, Geeks]
Program 2: