Check out example codes for "java queue". It will help you in understanding the concepts better.
Code Example 1
import java.util.*;
Queue<Integer> queue = new LinkedList<Integer>();
// use non-primative types when constructing
// to add a value to the back of queue:
queue.add(7);
// to remove and return front value:
int next = queue.remove();
// to just return front value without removing:
int peek = queue.peek();
Code Example 2
Queue<Integer> q = new LinkedList<>();
Code Example 3
while (!QUEUE.isEmpty()) {
QUEUE.remove();
}
Learn ReactJs, React Native from akashmittal.com