Whether final method can be overridden or not?

Questions by parthasarathi

Showing Answers 1 - 9 of 9 Answers

No, my friend, v cannot override the final method.had that been the case then the Final keyword would have lost its importance.a programmer uses final keyword before a method or class so that no one  overrides it orinherits it respectively.

  Was this answer useful?  Yes

SELVI.P

  • May 30th, 2006
 

      *     Final method cant be overriden . Actually it does not allows inherits

           the object .

       *    If we initialise b4 a class as Final it does not inherit the class.

       *   If we initialise b4 a variable as Final it does not inherit the object.

             

  Was this answer useful?  Yes

H.D.A.sanoj

  • Nov 22nd, 2011
 

we can not override a final method but it is possible to overload.when we use a final key word with a method it'll stop all modifications of the method so we can not override or inherit its properties

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions