Is synchronized static method legal in Java?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
Yes. It gets the lock on the object representing the class the method is defined in (eg MyClass.class) |
||||
|
|
|
Yes, and it simplifies static factory methods like this:
Here's what it might look like if
Not that big a deal, it just saves 2 lines of code. |
|||||
|
