Queueq = new LinkedList (); boolean isEmpty = q.isEmpty(); System.out.println(isEmpty); // true
Queueq = new LinkedList (); q.add(1);
QueuePackage library: `java.util`q = new LinkedList (); q.add(1); int x = q.poll(); // x = 1, and the queue is now empty