if you don't override toString then the toString implementation of Object is used, since that's the only class your class extends
so if i dont override the toString method properly, then my class will AUTOMATICALY extend as an object? and my Class
will use the Object class's toString() method to make a string representation of its object...?
---
in my case im reffering to the String class? not in the object class?
is that how the toString() of String class works and differs from the toString() method of Object class?