Java : in what order are static final fields initialized?

17,063

Solution 1

Yes, they are initialized in the order in which they appear in the source. You can read all of the gory details in The Java Language Specification, §12.4.2. See step 9, which reads:

... execute either the class variable initializers and static initializers of the class, or the field initializers of the interface, in textual order, as though they were a single block, except that final class variables and fields of interfaces whose values are compile-time constants are initialized first ...

Solution 2

I think that initialization of static fields could be re-ordered. At least that is how I understand JMM specification

There are a number of cases in which accesses to program variables (object instance fields, class static fields, and array elements) may appear to execute in a different order than was specified by the program.

Solution 3

if sub class and super class is there.

  1. EX: 'A' : super class 'B' : sub class and it extends super class 'A'
  2. when B class loaded then A class also loads
  3. all static variables get memory with default value from 'A' and 'B' class
  4. then static members (static variable,static block) are executed in top to bottom order of 'A' class and then 'B' class in order they declared . finally main method executed from sub class automatically.
Share:
17,063
sangfroid
Author by

sangfroid

Updated on June 02, 2022

Comments

  • sangfroid
    sangfroid almost 2 years

    Okay, so say I have a class that looks like this :

    public class SignupServlet extends HttpServlet {
        private static final Logger SERVLET_LOGGER=COMPANYLog.open(SignupServlet.class);
        private static final ExceptionMessageHandler handler = new ExceptionMessageHandler();   
        private static final SignupServletObservableAgent signupObservableAgent = 
            new SignupServletObservableAgent(null, SERVLET_LOGGER);
    }
    

    Can I count on the class loader to initialize those fields in order, such that I can rely on SERVLET_LOGGER to be instantiated before signupObservableAgent?

  • Olaf Dietsche
    Olaf Dietsche over 8 years
    This part also states "... and the value of b does not depend on the value of a, then the compiler is free to reorder these operations, ..."
  • user207421
    user207421 over 7 years
    The quotation is about accesses, not initializations.