I have a parent class and extended class, both contain a toString()
method.
How would I go about calling the parent class's toString()
method from the Test app?
Right now to call the extended class's toString method it's objectname.toString()
, but what about the parent class?
Thanks in advance for the help.