calling the parent class's method

If I have a method called delete in a class which a class I am creating is descended from, and I call the delete method in the child, how do I have the child call the parent class's delete near the end of the child class's delete method? Thanks

Use super

Darian Shimy

you have to use super to call the parent class's method