FIFO based Queue implementations?

Rajat Gupta picture Rajat Gupta · Apr 18, 2012 · Viewed 156.8k times · Source

I need a simple FIFO implemented queue for storing a bunch of ints (I don't mind much if it is generics implementation).

Anything already baked for me in java.util or Trove/Guava library?

Answer

John B picture John B · Apr 18, 2012

Yeah. Queue

LinkedList being the most trivial concrete implementation.