Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

What is the difference between synchronized and lock in Java?

share|improve this question
Please expand on what you mean by "lock". – Mike Q Sep 24 '10 at 19:20
Smells like homework... – Dave McClelland Sep 24 '10 at 19:20
Yep,tag your question with 'homework' if it is, please. – Brabster Sep 24 '10 at 19:23
He probably means the difference between "synchronized" and the Lock implementations download.oracle.com/javase/6/docs/api/java/util/concurrent/… – helpermethod Sep 24 '10 at 20:29

1 Answer

synchronized is a language keyword; Locks are objects.

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.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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