DEVFYI - Developer Resource - FYI

Two methods have key words static synchronized and synchronized separately. What is the difference between them?

Java Interview Questions and Answers (part 1)


(Continued from previous question...)

146. Two methods have key words static synchronized and synchronized separately. What is the difference between them?

Both are synchronized methods. One is instance method, the other is class method. Method with static modifier is a class method. That means the method belongs to class itself and can be accessed directly with class name and is also called Singleton design. The method without static modifier is an instance method. That means the instance method belongs to its object. Every instance of the class gets its own copy of its instance method.
When synchronized is used with a static method, a lock for the entire class is obtained. When synchronized is used with a non-static method, a lock for the particular object (that means instance) of the class is obtained.
Since both methods are synchronized methods, you are not asked to explain what is a synchronized method. You are asked to tell the difference between instance and class method. Of course, your explanation to how synchronized keyword works doesn't hurt. And you may use this opportunity to show your knowledge scope.

(Continued on next question...)

Other Interview Questions