Overloading | Overridding | Constructor | Finalizer |
super.method();
super(arg1, ....);
protected void finalize() throws Throwable { ...}NOTE: the throws Throwable refers to errors/exceptions that could occur....we will discuss this later when we talk about exceptions!!!
super.finalize();