When I try:
Queue<Integer> Q = new Queue<Integer>();
the compiler is giving me an error. Any help?
Also, if I want to initialize a queue do I have to implement the methods of the queue?
|
When I try:
the compiler is giving me an error. Any help? Also, if I want to initialize a queue do I have to implement the methods of the queue? |
||||
|
A The best option is to construct off a class that already implements the An alternative is to write your own class which implements the necessary Queue interface. It is not needed except in those rare cases where you wish to do something special while providing the rest of your program with a
An even less used alternative is to construct an anonymous class that implements
|
|||||||
|
|
or
Typically you pick a collection implementation by the performance and concurrency characteristics you're interested in. |
|||
|
|
|
|||||
|
|
Queue is an interface, you can't explicitly construct a Queue, you'll have to instantiate one of its implementing classes. Something like:
|
|||
|
|
qinstead ofQ. – Erick Robertson Jan 7 '11 at 16:16