Java wait(long arg)方法的使用

wait(long arg)方法的功能是等待一段時間,在這段時間內是否有線程對持有的鎖對象進行喚醒,若是超過了這段時間,該鎖就自動喚醒。 class MyRunnable implements Runnable { private Object lock; public MyRunnable (Object lock){ this.lock = lock; } @Override public v
相關文章
相關標籤/搜索