27 lines
664 B
Java
Raw Normal View History

2015-09-07 11:44:36 -06:00
// containers/PetMap.java
2015-06-15 17:47:35 -07:00
// <20>2015 MindView LLC: see Copyright.txt
import typeinfo.pets.*;
import java.util.*;
import static com.mindviewinc.util.Print.*;
public class PetMap {
public static void main(String[] args) {
2015-09-07 11:44:36 -06:00
Map<String, Pet> petMap = new HashMap<>();
2015-06-15 17:47:35 -07:00
petMap.put("My Cat", new Cat("Molly"));
petMap.put("My Dog", new Dog("Ginger"));
petMap.put("My Hamster", new Hamster("Bosco"));
print(petMap);
Pet dog = petMap.get("My Dog");
print(dog);
print(petMap.containsKey("My Dog"));
print(petMap.containsValue(dog));
}
2015-09-07 11:44:36 -06:00
}
/* Output:
2015-06-15 17:47:35 -07:00
{My Dog=Dog Ginger, My Cat=Cat Molly, My Hamster=Hamster
Bosco}
Dog Ginger
true
true
2015-09-07 11:44:36 -06:00
*/