How to use queue in Java 1.6 as LIFO? PLease Provide Example Code. Thanks
|
show 1 more comment
feedback
|
closed as not a real question by Qwerky, rsp, ho1, Tim Post♦ Aug 18 '11 at 16:32
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. See the FAQ for guidance on how to improve it.
|
Check the | |||||||
feedback
|
|
Why use a queue as LIFO when there is a Stack class http://java.sun.com/j2se/1.5.0/docs/api/java/util/Stack.html | |||||||||
feedback
|
java.util.Stack– amit Aug 15 '11 at 11:03Queueis basically based onFIFO, you rather look forStackwhich behaves likeLIFO– Talha Ahmed Khan Aug 15 '11 at 11:04java.util.Stack<E>(points to Java 6 API) – Andreas_D Aug 15 '11 at 11:09