Post Made Community Wiki by Community
show/hide this revision's text 2 added 94 characters in body

I was surprised by instance initializers the other day:

public class Foo {
    public Foo() { System.out.println("constructor called"); }

    static { System.out.println("static initializer called"); }

    { System.out.println("instance initializer called"); }
}

making a call to

Executing the following code

new Foo();
 displaysnew Foo();

will display:

static initializer called
instance initializer called
constructor called
instance initializer called
constructor called

I guess these would be useful if you had multiple constructors and needed common code?

show/hide this revision's text 1

I was surprised by instance initializers the other day:

public class Foo {
    public Foo() { System.out.println("constructor called"); }

    static { System.out.println("static initializer called"); }

    { System.out.println("instance initializer called"); }
}

making a call to new Foo(); displays:

static initializer called 
instance initializer called 
constructor called

I guess these would be useful if you had multiple constructors and needed common code?