| Author |
Question about PriorityQueue
|
Fred Victa
Ranch Hand
Joined: May 01, 2008
Posts: 53
|
|
Is the following code supposed to place all of the integers in numerical order? If not, can anyone explain why?
public class myClass{
public static void main(String[] args)
{
PriorityQueue<Integer> x = new PriorityQueue<Integer>();
x.add(2);
x.add(66);
x.add(23);
x.add(1);
x.add(3);
System.out.println(x);
}
}
|
 |
Stephan van Hulst
Bartender
Joined: Sep 20, 2010
Posts: 3044
|
|
|
So what does the program output? Does it match you expectations? Did you read the class documentation?
|
 |
 |
I agree. Here's the link: jrebel
|
|
subject: Question about PriorityQueue
|
|
|