| Author |
Final variables
|
Bharadwaj Adepu
Ranch Hand
Joined: Dec 30, 2007
Posts: 99
|
|
In the above code the constructor is setting a value to the final variable name. How is that possible? This runs fine and prints FINAL VARIABLE! Please explain.
|
SCJP 1.5
|
 |
Campbell Ritchie
Sheriff
Joined: Oct 13, 2005
Posts: 32651
|
|
|
A final field or variable can be set up once and once only. That can be done at declaration, in an initialiser (fields only) or in the constructor (again fields only).
|
 |
 |
|
|
subject: Final variables
|
|
|