ConcurrentLinkedDeque isEmpty() method in Java with Examples Read Discuss Courses Practice Improve Improve Improve Like Article Like Save Article Save Report issue Report The java.util.concurrent.ConcurrentLinkedDeque.isEmpty() is an in-built function in Java which checks whether the deque contains elements or not. Syntax: public boolean isEmpty() Parameters: The function does not accepts any parameter. Return: This method returns a boolean value stating whether this deque is empty or not. Below programs illustrate the ConcurrentLinkedDeque.isEmpty() method: Example: 1 // Java Program Demonstrate // isEmpty() method of ConcurrentLinkedDeque import java.util.concurrent.*; class ConcurrentLinkedDequeDemo { public static void main(String[] args) { ConcurrentLinkedDeque<String> cld = new ConcurrentLinkedDeque<String>(); // Displaying the existing LinkedDeque System.out.println("ConcurrentLinkedDeque: " + cld); // Check if the queue is empty // using isEmpty() method System.out.println("Is deque empty: " + cld.isEmpty()); } } Output: ConcurrentLinkedDeque: [] Is deque empty: true Example: 2 // Java Program Demonstrate // isEmpty() method of ConcurrentLinkedDeque import java.util.concurrent.*; class ConcurrentLinkedDequeDemo { public static void main(String[] args) { ConcurrentLinkedDeque<String> cld = new ConcurrentLinkedDeque<String>(); cld.add("GFG"); cld.add("Gfg"); cld.add("GeeksforGeeks"); cld.add("Geeks"); // Displaying the existing LinkedDeque System.out.println("ConcurrentLinkedDeque: " + cld); // Check if the queue is empty // using isEmpty() method System.out.println("Is deque empty: " + cld.isEmpty()); } } Output: ConcurrentLinkedDeque: [GFG, Gfg, GeeksforGeeks, Geeks] Is deque empty: false 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 : 20 Dec, 2018 Like Article Save Article Previous ConcurrentLinkedDeque removeFirstOccurrence() method in Java Next Static Block and main() method in Java Please Login to comment...