在这个简单的例子中,我有两个synchronized (theLock)
由不同的线程访问
public class Main {
public static void main(String[] args) throws InterruptedException {
System.out.println("start");
final Object theLock = new Object();
synchronized (theLock) {
System.out.println("main thread id : " + Thread.currentThread().getId());
new Thread(() -> {
System.out.println("new thread id : " + Thread.currentThread().getId() + ". Inside thread");
// before entering this section new thread should be blocked as `theLock` is already acquired
synchronized (theLock) {
System.out.println("inside synchronized");
theLock.notify();
}
}).start();
theLock.wait();
}
System.out.println("end");
}
}
为什么新创建的线程可以访问synchronized (theLock)
section里面?据我了解,theLock
已经被主线程获取,新的应该永远阻塞。相反,我看到它也进入了synchronized
。
这是一个输出
start
main thread id : 1
new thread id : 13. Inside thread
inside synchronized
end