ContactUs :

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

How do you prevent a method from being overridden ?

To prevent a specific method from being overridden in a subclass, use the final modifier on the method declaration, which means "this is the final implementation of this method", the end of its inheritance hierarchy.

 

  public final void exampleMethod()

   {

      //  Method statements

   }

Related Posts Plugin for WordPress, Blogger...
Flag Counter