MCPcopy Index your code
hub / github.com/BruceEckel/OnJava8-Examples / printQ

Method printQ

collections/QueueDemo.java:9–13  ·  view source on GitHub ↗
(Queue queue)

Source from the content-addressed store, hash-verified

7
8public class QueueDemo {
9 public static void printQ(Queue queue) {
10 while(queue.peek() != null)
11 System.out.print(queue.remove() + " ");
12 System.out.println();
13 }
14 public static void main(String[] args) {
15 Queue<Integer> queue = new LinkedList<>();
16 Random rand = new Random(47);

Callers 2

mainMethod · 0.95
mainMethod · 0.95

Calls 3

peekMethod · 0.80
printMethod · 0.80
removeMethod · 0.45

Tested by

no test coverage detected