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?