Effective Java - Item 10 Always override toString
Item 10: Always override toString java.lang.Object provides an implementation of the toString method, but it returns is generally not what the user of your class wants to see. the returns will be followed by an ( @ ) and the...