Jobs

Java OOPS : 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
                          }