What is final variable

Showing Answers 1 - 8 of 8 Answers

mahi

  • Jun 27th, 2005
 

final variable is constant 

  Was this answer useful?  Yes

Britto

  • Jul 10th, 2005
 

A final variable is the one whose value cannot be changed. It is a constant.

  Was this answer useful?  Yes

unknown

  • Jul 31st, 2005
 

Java language provides the declaration of Constants with the "final" 
 

  Was this answer useful?  Yes

Binod

  • Sep 6th, 2005
 

Final variable are constants. They should be initialized either when they are defined or in constructor. Once initialized their value cannot be changed.

  Was this answer useful?  Yes

Rajesh

  • Nov 1st, 2005
 

Final variable are constants. Once u assigned some value to the final variable,that assigned value througout the ppm is same.u  canot modify it.final class cant be inherited.

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