suppose i have a super class and a sub class, and they both have a function called "delete".
now suppose the delete method of the subclass calls super.delete so that it runs the delete method of the super class
if the superclass's delete function is recursive (it has a line that calls delete), will it call the delete of itself, or the delete of the subclass (this is what i'm hoping it does)?
thanks
now suppose the delete method of the subclass calls super.delete so that it runs the delete method of the super class
if the superclass's delete function is recursive (it has a line that calls delete), will it call the delete of itself, or the delete of the subclass (this is what i'm hoping it does)?
thanks
