OnJava8-Examples/generics/SimpleQueue.java

15 lines
420 B
Java
Raw Normal View History

2015-09-07 11:44:36 -06:00
// generics/SimpleQueue.java
2015-06-15 17:47:35 -07:00
// <20>2015 MindView LLC: see Copyright.txt
// A different kind of container that is Iterable
import java.util.*;
public class SimpleQueue<T> implements Iterable<T> {
private LinkedList<T> storage = new LinkedList<>();
public void add(T t) { storage.offer(t); }
public T get() { return storage.poll(); }
@Override
public Iterator<T> iterator() {
return storage.iterator();
}
2015-09-07 11:44:36 -06:00
}