Date: 02/26/06 (Java Web) Keywords: java One of the common questions I hear from Java newcomers is - where is a FIFO list in Java? Java does have a FIFO list capability built-in with LinkedList and ArrayList, but they are not well advertized. A FIFO interface should at least have: public interface FIFO { /** Add an object to [...] Source: http://blog.taragana.com/index.php/archive/fifo-list-in-java/
|