Are static variables initialised every time a new instance of the object containing these variables are created ? Or are they initialised just once when the object is first called?
|
|
You said Are instance static variables initialised... stop right there, the statement makes no sense. static variables live on the class, not on any particular instance. They are initialized in an initialization procedure that is run when an instance is created, a static method on the class is run, or a static variable on the class is accessed. (Full disclosure, @Bruno's answer led me to this information). |
|||||||||||||||
|
|
Static fields are initialized during the initialization of the class (don't mix initialization and loading, they are different things -- a class can be loaded, and you can do reflection on it, without ever initializing it). Also, class initialization can happen more than once for a given class if you are using multiple See VM Spec section 2.17.4, Initialization, and section 2.17.5, Detailed initialization procedure for more details on when exactly a class will be loaded and when exactly it will be initialized.. EDIT: trivial example that will show how a class can be loaded and initialized multiple times and that loading does not automatically imply initialization:
(I hope this compiles when you specify the missing Note that it is necessary to set the class loaders' parents Finally, note that |
|||||||
|