Search code examples
javainheritancepolymorphismaccess-modifiers

Is there a way to change access modifiers scope on a final method?


Is there a way to change access modifiers scope on a final method from children who inherited it without reimplement it?


Solution

  • You cannot override the final method in child class.Final key word is meant for stoping from overriding.