ContactUs :

Please send your Questions & Answers or Feedback to "mohan@javabook.org"

Why super() ?

Super() is used to invoke the super class version method from the subclass. If we call the methods without the super then the overridden version of the method is called.

class A {
            x(){}
            }
class B {
           x(){
                super.x();
               }
            }
Related Posts Plugin for WordPress, Blogger...
Flag Counter