I have a queston regarding double-checked locking. Consider this example:

public class Singleton {

     private static volatile Singleton instance = null;

     public static Singleton getInstance() {
        if(instance  == null) {
            synchronized(Singleton.class) {
                if(instance  == null) {
                    instance  = new Singleton();
                }
            }
        }
        return instance ;
    }
}

As I have understood, the above code is the correct way to make a Singleton class.

However, NetBeans wants me to remove the outer if statement, so it would look like this:

public class Singleton {

     private static volatile Singleton instance = null;

     public static Singleton getInstance() {
        synchronized(Singleton.class) {
            if(instance  == null) {
                instance  = new Singleton();
            }
        }
        return instance ;
    }
}

The only differece between these two snippets is that in the second example, the code will always get into the synchronized block and in the first it will not. Why would I listen to NetBeans and remove the outer if statement? It should be better avoid the locking.

link|improve this question

1  
BTW: I would just use enum Singleton { INSTANCE } Its much much simpler. ;) – Peter Lawrey Dec 7 '11 at 9:38
feedback

3 Answers

up vote 2 down vote accepted

NetBeans's automatic hint system obviously isn't aware that it's possible to do double-checked locking correctly with volatile, as you've done, so it suggests full locking instead. Better safe than sorry. But you're right in this case, not NetBeans.

link|improve this answer
2  
Actually, NetBeans is RIGHT ... if the code is run on a JVM prior to 5.0. – Stephen C Dec 7 '11 at 10:05
1  
@Stephen C But even 1.5 has completed its End Of Service Life some time ago. Even the Sun 1.4 implementation supports the 1.5 JMM. Unless you are targeting Java ME, it's not right. – Tom Hawtin - tackline Dec 7 '11 at 11:12
Changing memory model semantics between JVM versions is a pain, and surely one should aim for the worst reasonable case. Luckily 1.4 is essentially out of existence now (I hope!). – Joonas Pulakka Dec 7 '11 at 11:35
feedback

Most of the time, the singleton will be used, and doesn't cost much to create, so just make it simple:

public class Singleton {
    private static final Singleton INSTANCE = new Singleton();

    public static Singleton getInstance() {
        return INSTANCE;
    }
    ...
}

If you really want lazy instantiation, use a static inner class:

public class Singleton {
    public static Singleton getInstance() {
        return Holder.INSTANCE;
    }
    ...

    private static class Holder {
        private static final Singleton INSTANCE = new Singleton();
    }
}
link|improve this answer
feedback

Don't listen to NetBeans in this situation. Your first code sample is correct.

link|improve this answer
1  
Actually, NetBeans is RIGHT ... if the code is run on a JVM prior to 5.0. Refer to the Wikipedia article. – Stephen C Dec 7 '11 at 10:05
NetBeans should refer to Source Level. If source level is 1.4 or below, of course NetBeans is right. But if source level is 1.5/1.6/1.7 - NetBeans is NOT right. – Artem Dec 7 '11 at 10:14
actually, I think it will be the level of the platform on which the code is actually executed. – Stephen C Dec 7 '11 at 10:25
feedback

Your Answer

 
or
required, but never shown

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