2016-08-02 11:52:46 -06:00
|
|
|
// understandingcollections/QueueBehavior.java
|
2015-12-15 11:47:04 -08:00
|
|
|
// (c)2016 MindView LLC: see Copyright.txt
|
2015-11-15 15:51:35 -08:00
|
|
|
// We make no guarantees that this code is fit for any purpose.
|
|
|
|
// Visit http://mindviewinc.com/Books/OnJava/ for more book information.
|
2015-06-15 17:47:35 -07:00
|
|
|
// Compares the behavior of some of the queues
|
|
|
|
import java.util.concurrent.*;
|
|
|
|
import java.util.*;
|
|
|
|
|
|
|
|
public class QueueBehavior {
|
2016-07-05 14:46:09 -06:00
|
|
|
private static String[] s =
|
|
|
|
("one two three four five six seven " +
|
|
|
|
"eight nine ten").split(" ");
|
|
|
|
static void test(Queue<String> queue) {
|
|
|
|
for(String ss : s)
|
|
|
|
queue.offer(ss);
|
2015-06-15 17:47:35 -07:00
|
|
|
while(queue.peek() != null)
|
|
|
|
System.out.print(queue.remove() + " ");
|
|
|
|
System.out.println();
|
|
|
|
}
|
|
|
|
public static void main(String[] args) {
|
2016-07-05 14:46:09 -06:00
|
|
|
int count = 10;
|
|
|
|
test(new LinkedList<>());
|
|
|
|
test(new PriorityQueue<>());
|
|
|
|
test(new ArrayBlockingQueue<>(count));
|
|
|
|
test(new ConcurrentLinkedQueue<>());
|
|
|
|
test(new LinkedBlockingQueue<>());
|
|
|
|
test(new PriorityBlockingQueue<>());
|
2015-06-15 17:47:35 -07:00
|
|
|
}
|
2015-09-07 11:44:36 -06:00
|
|
|
}
|
|
|
|
/* Output:
|
2015-06-15 17:47:35 -07:00
|
|
|
one two three four five six seven eight nine ten
|
|
|
|
eight five four nine one seven six ten three two
|
|
|
|
one two three four five six seven eight nine ten
|
|
|
|
one two three four five six seven eight nine ten
|
|
|
|
one two three four five six seven eight nine ten
|
|
|
|
eight five four nine one seven six ten three two
|
2015-09-07 11:44:36 -06:00
|
|
|
*/
|