I can\'t seem to understand why when I use println method on the quarter object, it returns the value of the toString method. I never called the toString method why am I g
Because PrintStream.println has an overload that takes an Object, and then calls its toString method.
PrintStream.println
Object
toString