Double Brace Initialization in Java!

java-double-brace-initializationFew days back I came to know about a different way of initializing collections and objects in Java. Although this method of initialization has been there in Java since quite a few years now, very few people actually knows about it or have used it in their code. The technique is called Double Brace Initialization technique in Java. Let us see first how we will initialize an ArrayList in Java by “normal” way:
List<String> countries = new ArrayList<String>(); countries.add("Switzerland"); countries.add("France"); countries.add("Germany"); countries.add("Italy"); countries.add("India");
Code language: Java (java)
Above code snippet first creates an object of ArrayList type String and then add one by one countries in it. Now check the Double Brace Initialization of the same code:
List<String> countries = new ArrayList<String>() {{ add("India"); add("Switzerland"); add("Italy"); add("France"); add("Germany"); }};
Code language: Java (java)

How does this works?

Well, the double brace ( {{ .. }} ) initialization in Java works this way. The first brace creates a new AnonymousInnerClass, the second declares an instance initializer block that is run when the anonymous inner class is instantiated. This type of initializer block is formally called an “instance initializer”, because it is declared withing the instance scope of the class — “static initializers” are a related concept where the keyword static is placed before the brace that starts the block, and which is executed at the class level as soon as the classloader completes loading the class . The initializer block can use any methods, fields and final variables available in the containing scope, but one has to be wary of the fact that initializers are run before constructors. If you have not understood the concept, try executing following code and it will make things clear for you.
public class Test { public Test() { System.out.println("Constructor called"); } static { System.out.println("Static block called"); } { System.out.println("Instance initializer called"); } public static void main(String[] args) { new Test(); new Test(); } }
Code language: Java (java)

Output:

Static block called
Instance initializer called
Constructor called
Instance initializer called
Constructor called
Thus the instance initializer code will be called each time a new instance of object is created.
Get our Articles via Email. Enter your email address.

You may also like...

13 Comments

  1. ruslan says:

    Unfortunatelly that code creates anonymous class. Multiple using of such technique will create dozen of anonymous classes, and that could cause problems with perm gen space.

  2. I agree with you Ruslan. This technique is not efficient way of doing this, but I dint knew if such thing exists :-)

  3. Karthik says:

    I agree with Viral that many Java developers will not be knowing it unless they read the specification. Nice to know that such an option exists.

  4. Prashanth says:

    Interesting to know with clean explanation

  5. Daniel says:

    Javas Double Brace Instatiation makes it a lot easier to read your source code. For review reasons is that important to you and your colleagues. I think most people only see these advantages if nobody uses them: they would be glad to have them.

    A few tips and backgrounds, too: is is about the obstacles and the possibillities with Javas Double Brace Instatiation:
    http://bit.ly/endUIi

    I hope I could help a little.

  6. Ravi says:

    Awesome! Never tried such a thing so far. This could be useful in providing easy fixes.

    Thanks

  7. Raghu says:

    Hi,

    Anybody please help me , how to send /receive sms from/to java web application/java application.

  8. Dharmendra says:

    Nice explanation…Thanks a lot for this article.

  9. Vinay says:

    import java.util.ArrayList;
    import java.util.List;
    import java.lang.*;
     
    public class MyBasicArrayList {
     
        public static void main(String[] a){
    
          long beginTime = System.currentTimeMillis();
            List<String> al = new ArrayList<String>(){{
              add("JAVA");
            add("C++");
            add("PERL");
            add("PHP");  
            }};
            long endTime = System.currentTimeMillis();
            long difference1 = endTime - beginTime;
                    System.out.println(al);
            
            long beginTime2 = System.currentTimeMillis();
            List<String> a2 = new ArrayList<String>();
            a2.add("JAVA");
             a2.add("C++");
             a2.add("PERL");
             a2.add("PHP");  
             long endTime2 = System.currentTimeMillis();
            long difference2 = endTime2 - beginTime2;
            System.out.println(al);
            //add elements to the ArrayList
            if(difference2>difference1){
                System.out.println("{{}} Wins");}
                else{
                    System.out.println("{{}} Looses");}           
        }
    }
     

    I tried this program and Guess what {{}} Looses….. n times So I appreciate your effort but this is lil slower think..kindly revert If I am wrong.

  10. ali says:

    nice explanation and useful tutorial , thanks ;)

  11. jawed says:

    Any one can tell me how to add values to List which parameter of a constructor java

  12. jawed says:

    private static List ga ;how ????
    Any one can tell me how to add values to List which is parameter of a constructor java
    public test(List g) {
    //how to add values?????
    }

  13. Dinesh Krishnan says:

    Very good article thanks for sharing. Good work

Leave a Reply

Your email address will not be published. Required fields are marked *