OnJava8-Examples/holding/CollectionSequence.java

35 lines
967 B
Java
Raw Normal View History

2015-04-20 15:36:01 -07:00
//: holding/CollectionSequence.java
import typeinfo.pets.*;
import java.util.*;
public class CollectionSequence
extends AbstractCollection<Pet> {
private Pet[] pets = Pets.createArray(8);
2015-05-05 11:20:13 -07:00
@Override
2015-04-20 15:36:01 -07:00
public int size() { return pets.length; }
2015-05-05 11:20:13 -07:00
@Override
2015-04-20 15:36:01 -07:00
public Iterator<Pet> iterator() {
return new Iterator<Pet>() {
private int index = 0;
2015-05-05 11:20:13 -07:00
@Override
2015-04-20 15:36:01 -07:00
public boolean hasNext() {
return index < pets.length;
}
2015-05-05 11:20:13 -07:00
@Override
2015-04-20 15:36:01 -07:00
public Pet next() { return pets[index++]; }
2015-05-05 11:20:13 -07:00
@Override
2015-04-20 15:36:01 -07:00
public void remove() { // Not implemented
throw new UnsupportedOperationException();
}
};
2015-05-18 23:05:20 -07:00
}
2015-04-20 15:36:01 -07:00
public static void main(String[] args) {
CollectionSequence c = new CollectionSequence();
InterfaceVsIterator.display(c);
InterfaceVsIterator.display(c.iterator());
}
} /* Output:
0:Rat 1:Manx 2:Cymric 3:Mutt 4:Pug 5:Cymric 6:Pug 7:Manx
0:Rat 1:Manx 2:Cymric 3:Mutt 4:Pug 5:Cymric 6:Pug 7:Manx
*///:~