I have read this sentence in a book but I didn't understand it:
A field that is both static and final has only one piece of storage that cannot be changed.
Can anyone explain it for me?
|
The source of your confusion may be that the word "static" in english and it's meaning in Java are only loosely related. A variable defined in a class Cat in the "normal" way can be referred to as an instance variable.
Each time you create a new object of type Cat, you create a new copy of the variable 'weight'. If you create 10 objects of type Cat, each one has it's own copy of the weight variable. A 'static' variable can be thought of as a class level variable, as opposed to an instance variable. A static variable has only one copy and belongs to the class Cat itself, rather than there being one copy for each object of type Cat.
Here, no matter how many objects of type Cat we create, there is only one copy of speciesName. If the static variable is also 'final,' than this one copy of the variable is the only piece of storage that cannot be changed. If the variable 'weight' were final in the above example, there would be 10 pieces of storage which could not be changed -- one for each object of type Cat that we had created. |
|||
|
|
|
A So a
Now these cars have one variable
|
|||||||||||||||||
|
|
See the section 'Constants' for an explanation on this page: http://download.oracle.com/javase/tutorial/java/javaOO/classvars.html |
|||
|
|
finalalso has concurrency implementations. Afinalfield is guaranteed to be thread-safe in a way that other fields are not. See: my answer here: stackoverflow.com/questions/3974350/… – andersoj Oct 25 '10 at 22:45