aspose file tools
The moose likes Beginning Java and the fly likes static block variable   Vs  static variable Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login
JavaRanch » Java Forums » Java » Beginning Java
Reply Bookmark "static block variable   Vs  static variable" Watch "static block variable   Vs  static variable" New topic
Author

static block variable Vs static variable

kri shan
Ranch Hand

Joined: Apr 08, 2004
Posts: 1300
static block loads before constructor gets executed. What about static variables outside static block(within the class) ?
Miklos Szeles
Ranch Hand

Joined: Oct 21, 2008
Posts: 142
Hi Kri,

Have you tried it? I found this:

According to one of my favorite authors, David Flanagan, author of Java in a Nutshell,

"What the compiler actually does is to internally produce a single class initialization routine that combines all the static variable initializers and all of the static initializer blocks of code, in the order that they appear in the class declaration. This single initialization procedure is run automatically, one time only, when the class is first loaded."


Campbell Ritchie
Sheriff

Joined: Oct 13, 2005
Posts: 32712
    
    4
The official version is in the Java™ Language Specification, but it is by no means easy to read.
 
I agree. Here's the link: http://ej-technologies/jprofiler - if it wasn't for jprofiler, we would need to run our stuff on 16 servers instead of 3.
 
subject: static block variable Vs static variable
 
Similar Threads
final variable
How do you classify a method-local inner class defined inside a static method?
Doubt on order of execution
Question on static block and static variable
what is the difference between static variable and static block