The removeFirstOccurrence() method of LinkedBlockingDeque removes the first occurrence of the specified element from this deque. If the deque does not contain the element, it remains unchanged. It returns true if this deque contained the specified element, else it returns false.
Syntax:
public boolean removeFirstOccurrence(Object o)
Parameters: This method accepts a mandatory parameter o which specifies the element to be removed from the Deque container.
Returns: This method returns true if the element is present and removed from the Deque container, else it returns false.
Below programs illustrate removeFirstOccurrence() method of LinkedBlockingDeque:
Program 1: When element is present
Java
import java.util.concurrent.LinkedBlockingDeque;
import java.util.*;
public class GFG {
public static void main(String[] args)
throws InterruptedException
{
LinkedBlockingDeque<Integer> LBD
= new LinkedBlockingDeque<Integer>();
LBD.add( 15 );
LBD.add( 20 );
LBD.add( 20 );
LBD.add( 15 );
System.out.println( "Linked Blocking Deque: " + LBD);
if (LBD.removeFirstOccurrence( 15 ))
System.out.println( "First occurrence of 15 removed" );
else
System.out.println( "15 not present and not removed" );
System.out.println( "Linked Blocking Deque: " + LBD);
}
}
|
Output
Linked Blocking Deque: [15, 20, 20, 15]
First occurrence of 15 removed
Linked Blocking Deque: [20, 20, 15]
Program 2: When element is not present
Java
import java.util.concurrent.LinkedBlockingDeque;
import java.util.*;
public class GFG {
public static void main(String[] args)
throws InterruptedException
{
LinkedBlockingDeque<Integer> LBD
= new LinkedBlockingDeque<Integer>();
LBD.add( 15 );
LBD.add( 20 );
LBD.add( 20 );
LBD.add( 15 );
System.out.println( "Linked Blocking Deque: " + LBD);
if (LBD.removeFirstOccurrence( 10 ))
System.out.println( "First occurrence of 10 removed" );
else
System.out.println( "10 not present and not removed" );
System.out.println( "Linked Blocking Deque: " + LBD);
}
}
|
Output:
Linked Blocking Deque: [15, 20, 20, 15]
10 not present and not removed
Linked Blocking Deque: [15, 20, 20, 15]
Reference: https://docs.oracle.com/javase/8/docs/api/java/util/concurrent/LinkedBlockingDeque.html#removeFirstOccurrence-java.lang.Object-
Feeling lost in the vast world of Backend Development? It's time for a change! Join our
Java Backend Development - Live Course and embark on an exciting journey to master backend development efficiently and on schedule.
What We Offer:
- Comprehensive Course
- Expert Guidance for Efficient Learning
- Hands-on Experience with Real-world Projects
- Proven Track Record with 100,000+ Successful Geeks
Last Updated :
04 Aug, 2021
Like Article
Save Article