What is the meaning of "final" keyword?

Questions by Beena   answers by Beena

Showing Answers 1 - 12 of 12 Answers

shahnaz

  • Sep 28th, 2005
 

Final is something like declaring a constant. when a variable is declared final it is constant, when a method is declared final you cannot overide is,when a class is declared final you cannot extend it.

  Was this answer useful?  Yes

Devidas Sonawane

  • Oct 19th, 2005
 

Final keyword is used for define constant variables and method and no body can change that variable and method within program.

  Was this answer useful?  Yes

nasireddy satyanarayana reddy

  • Nov 29th, 2005
 

final keyword is a java keyword ,it is used for class ,method and variable if it is used for classes--- that classes are not subclassed means we can't extend that classif it is used for methods---that methods arenot overridable means we can't override that type of methods in subclassesif it used for varialbe-----it is constant throught out the programand final is used for constant variable in java similar to const keword in c++and another difference is therefinal classes arenot inherited but we are voilating the oops concept .

  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