I am learning java multi-threading, I found it's hard to understand how synchronized block works:

 synchronized(Object o){
     // do something
    }

please give some example code that can show me the Object o is blocked. As how I understand this, accessing object o from another thread will be blocked while the synchronized block is being excuted?

link|improve this question

did you try google? – I J Nov 17 '11 at 4:18
feedback

2 Answers

up vote 2 down vote accepted

Please Look at this Example

link|improve this answer
feedback

Read the Java Tutorials - Synchronized Methods and statement.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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