Bruce Eckel 49edcc8b17 reorg
2015-06-15 17:47:35 -07:00

13 lines
313 B
Java

//: containersindepth/Groundhog.java
// ©2015 MindView LLC: see Copyright.txt
// Looks plausible, but doesn't work as a HashMap key.
public class Groundhog {
protected int number;
public Groundhog(int n) { number = n; }
@Override
public String toString() {
return "Groundhog #" + number;
}
} ///:~