60 lines
1.8 KiB
Java
60 lines
1.8 KiB
Java
//: typeinfo/PetCount.java
|
|
// ©2015 MindView LLC: see Copyright.txt
|
|
// Using instanceof.
|
|
import typeinfo.pets.*;
|
|
import java.util.*;
|
|
import static net.mindview.util.Print.*;
|
|
|
|
public class PetCount {
|
|
static class PetCounter extends HashMap<String,Integer> {
|
|
public void count(String type) {
|
|
Integer quantity = get(type);
|
|
if(quantity == null)
|
|
put(type, 1);
|
|
else
|
|
put(type, quantity + 1);
|
|
}
|
|
}
|
|
public static void
|
|
countPets(PetCreator creator) {
|
|
PetCounter counter= new PetCounter();
|
|
for(Pet pet : creator.createArray(20)) {
|
|
// List each individual pet:
|
|
printnb(pet.getClass().getSimpleName() + " ");
|
|
if(pet instanceof Pet)
|
|
counter.count("Pet");
|
|
if(pet instanceof Dog)
|
|
counter.count("Dog");
|
|
if(pet instanceof Mutt)
|
|
counter.count("Mutt");
|
|
if(pet instanceof Pug)
|
|
counter.count("Pug");
|
|
if(pet instanceof Cat)
|
|
counter.count("Cat");
|
|
if(pet instanceof EgyptianMau)
|
|
counter.count("EgyptianMau");
|
|
if(pet instanceof Manx)
|
|
counter.count("Manx");
|
|
if(pet instanceof Cymric)
|
|
counter.count("Cymric");
|
|
if(pet instanceof Rodent)
|
|
counter.count("Rodent");
|
|
if(pet instanceof Rat)
|
|
counter.count("Rat");
|
|
if(pet instanceof Mouse)
|
|
counter.count("Mouse");
|
|
if(pet instanceof Hamster)
|
|
counter.count("Hamster");
|
|
}
|
|
// Show the counts:
|
|
print();
|
|
print(counter);
|
|
}
|
|
public static void main(String[] args) {
|
|
countPets(new ForNameCreator());
|
|
}
|
|
} /* Output:
|
|
Rat Manx Cymric Mutt Pug Cymric Pug Manx Cymric Rat EgyptianMau Hamster EgyptianMau Mutt Mutt Cymric Mouse Pug Mouse Cymric
|
|
{Rat=2, Cymric=5, Cat=9, Pet=20, Dog=6, Manx=7, EgyptianMau=2, Pug=3, Mouse=2, Rodent=5, Hamster=1, Mutt=3}
|
|
*///:~
|