2015-04-20 15:36:01 -07:00
|
|
|
|
//: holding/CrossContainerIteration.java
|
2015-05-29 14:18:51 -07:00
|
|
|
|
// <20>2015 MindView LLC: see Copyright.txt
|
2015-04-20 15:36:01 -07:00
|
|
|
|
import typeinfo.pets.*;
|
|
|
|
|
import java.util.*;
|
|
|
|
|
|
|
|
|
|
public class CrossContainerIteration {
|
|
|
|
|
public static void display(Iterator<Pet> it) {
|
|
|
|
|
while(it.hasNext()) {
|
|
|
|
|
Pet p = it.next();
|
|
|
|
|
System.out.print(p.id() + ":" + p + " ");
|
|
|
|
|
}
|
|
|
|
|
System.out.println();
|
2015-05-18 23:05:20 -07:00
|
|
|
|
}
|
2015-04-20 15:36:01 -07:00
|
|
|
|
public static void main(String[] args) {
|
|
|
|
|
ArrayList<Pet> pets = Pets.arrayList(8);
|
2015-05-05 11:20:13 -07:00
|
|
|
|
LinkedList<Pet> petsLL = new LinkedList<>(pets);
|
|
|
|
|
HashSet<Pet> petsHS = new HashSet<>(pets);
|
|
|
|
|
TreeSet<Pet> petsTS = new TreeSet<>(pets);
|
2015-04-20 15:36:01 -07:00
|
|
|
|
display(pets.iterator());
|
|
|
|
|
display(petsLL.iterator());
|
|
|
|
|
display(petsHS.iterator());
|
|
|
|
|
display(petsTS.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
|
2015-05-05 11:20:13 -07:00
|
|
|
|
2:Cymric 1:Manx 0:Rat 6:Pug 5:Cymric 4:Pug 3:Mutt 7:Manx
|
2015-04-20 15:36:01 -07:00
|
|
|
|
5:Cymric 2:Cymric 7:Manx 1:Manx 3:Mutt 6:Pug 4:Pug 0:Rat
|
|
|
|
|
*///:~
|