我有一些这样的编码。
public class WaitTest {
public static void main(String[] args) {
Object object = new Object();
try {
synchronized (object) {
object.wait(5000);
}
} catch (InterruptedException e) {
e.printStackTrace();
}
}
}
使用同步(对象)是否意味着 WaitTest 类拥有对象的监视器?