What does {{...}} block mean in the following code?

class X {
private Y var1;

    private X() {
        Z context = new Z(new SystemThreadPool()) {{
            var1 = new Y();
        }};
    }
}
link

Corrected code: var1 = new Y() instead of Y = new Y(); – Victor Sorokin Sep 3 '09 at 8:29
3  
I guess it's not easy to google for double braces. – Tom Hawtin - tackline Sep 3 '09 at 8:52
@Tom Hawtin: You can Google for "double brace" instead... – Ates Goral Aug 10 '10 at 21:13
feedback

4 Answers

up vote 22 down vote accepted

It's called double curly brace initialization.

It means you're creating an anonymous subclass and the code within the double braces is basically a constructor. It's often used to add contents to collections because Java's syntax for creating what are essentially collection constants is somewhat awkward.

So you might do:

List<String> list = new ArrayList<String>() {{
  add("one");
  add("two");
  add("three");
}};

instead of:

List<String> list = new ArrayList<String>();
list.add("one");
list.add("two");
list.add("three");

I actually don't like that and prefer to do this:

List<String> list = Arrays.asList("one", "two", "three");

So it doesn't make much sense in that case whereas it does for, say, Maps, which don't have a convenient helper.

link
3  
Java7 will have "map literal" syntax, so eventually the {{ }} syntax will become obsolete. Assuming anyone actually uses Java7. I may have retired by that point. – skaffman Sep 3 '09 at 8:46
@skaffman It is very useful in "fluid java" such as the JATL attempts. – C. Ross Mar 29 '11 at 14:21
Note that Arrays.asList() returns java.util.Arrays.ArrayList.ArrayList and not java.util.ArrayList, which has limited functionality. – Asaf Jan 17 at 13:03
feedback

The "outer" braces mean that you're making an anonymous subclass, the second braces are the object initializer. The initializer is run before the class' constructor, but after any super calls (and therefore also after any superclass initializers). You can use initializers in non-anonymous classes, too, which is a convenient way to initiate final fields if you have several constructors which cannot call each other, or fields which need more complex initialization than usual field initializers allow.

Consider this class:

class X extends Y{
    private final int lulz;

    private static boolean someCondition(){...}
    private static boolean danger() throws SomeException { ... }
    public X(A a) throws SomeException {
        super(a); 
        lulz = someCondition()? danger() : 0;
    }
    public X(B b) throws SomeException {
        super(b); 
        lulz = someCondition()? danger() : 0;
    }
}

It could be rewritten as:

class X extends Y{
    private final int lulz;

    private static boolean someCondition(){...}
    private static boolean danger() throws SomeException { ... }
    { // initalizer -- might throw SomeException!
        lulz = someCondition()? danger() : 0;
    }
    public X(A a) throws SomeException { super(a); }
    public X(B b) throws SomeException { super(b); }
}

If the initializer can throw a checked exception, all constructors must declare they can throw it.

link
feedback

You are creating an anonymous class and using the class Instance initializer idiom, like this:

class X {
    private Y var1;

    private X() {
        Z context = new Z(
               new SystemThreadPool()) {
                   {                        // This is the initialize idiom
                       var1 = new Y();      //
                   }                        //
               }
          );  // BTW you are missing ")"
    }
}
link
feedback

It's called Object Initialization which means you're a assigning a value to Y of Z instance.

link
Not in Java. It can be used similarly, but is actually much much more powerful. – C. Ross Mar 29 '11 at 14:24
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.