What is the difference between synchronized and lock 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.
|
|
When a method or block of code is marked synchronized, you are saying that some lock object (which could be specified in the syntax of synchronized) must be obtained by the method or block before it can be executed. |
|||
|
|
