When are static and non static variables of the class initialized?
The static
variables are initialized when class loaded can called with class name dot
variable name .Any changes made reflect into all objects. but Non static
variables are initialized just before the constructor is called .