13 lines
313 B
Java
Raw Normal View History

2015-06-15 17:47:35 -07:00
//: containersindepth/Groundhog.java
// <20>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;
}
} ///:~