This post originated from an RSS feed registered with Java Buzz
by Angsuman Chakraborty.
Original Post: FIFO List in Java
Feed Title: Simple Thoughts - Java and Web Technology Blog
Feed URL: http://tech.gaeatimes.com/index.php/feed/
Feed Description: News and views as a Software Architect and Entrepreneur on Java and Web Software.
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 [...]