Item #10: Always override toString All classes that extend the Object class, which is to say all classes, have the toString method. When toString is not overriden, this method simply prints the name of the class, followed by an “@”, followed by the id of the instance of the class. This is not super helpful […]
Effective Java: Item #9
Header: I am working my way through effective java and am writing these posts to help solidify my understanding of what’s in the book. This is the first post of it’s kind, but I’m sure I’ll get around to writing posts on the previous 8 items, along with the next 45-ish. Effective Java: Item #9, […]