Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
bgColor#ccccff
public class Lazy {
  private static volatile boolean initialized = false;
  
  static {
    // Initialize, for example, a database connection
    initialized = true;
  }
  
  public static void main(String[] args) {
    System.out.println(initialized);
  }
}

...