vote up 2 vote down star
1

Thank you folks.

flag
1  
You could obtain the answer simply by defining a synchronized method and running the compiler. The answer is 'yes' BTW. – Don Sep 11 at 17:40
Read the question one more time. – Mike Waldman Sep 11 at 17:49

2 Answers

vote up 0 vote down

Yes, and it simplifies static factory methods like this:

class Foo {
    private Foo() {}

    public static synchronized Foo getInstance() {
        if (instance == null) {
            instance = new Foo();
        }
        return instance;
    }

    private static Foo instance = null;
}

Here's what it might look like if static methods could not be synchronized:

class Foo {
    private Foo() {}

    public static Foo getInstance() {
        synchronized (LOCK) {
            if (instance == null) {
                instance = new Foo();
            }
        }
        return instance;
    }

    private static Foo instance = null;

    private static final Object LOCK = Foo.class;
    // alternative: private static final Object LOCK = new Object();
}

Not that big a deal, it just saves 2 lines of code.

link|flag
Actually, both of those versions are horrible. just initialize the instance field directly in its declaration. It will then be initialized when the class is first accessed and synchronized implicitly once, allowing subsequence calls to getInstance() to be unsynchronized. – Michael Borgwardt Sep 12 at 0:15
and we all know that static factories like this are evil. Sometimes you have to go evil to just get the job done, but that doesn't make it right. Better to inject resources. – Kevin Day Sep 12 at 3:59
vote up 13 vote down

Yes. It gets the lock on the object representing the class the method is defined in (eg MyClass.class)

link|flag

Your Answer

Get an OpenID
or

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