| Author |
modifiers
|
rajesh ramalingam
Greenhorn
Joined: Dec 15, 2002
Posts: 1
|
|
|
Why cannot a variable be final and volatile?
|
 |
David Weitzman
Ranch Hand
Joined: Jul 27, 2001
Posts: 1365
|
|
|
volatile specifies some subtleties about the order of modifying and accessing a field in multithreaded environments, but since a final field never changes value the access order doesn't really matter.
|
 |
 |
|
|
subject: modifiers
|
|
|