您好,登錄后才能下訂單哦!
這篇文章主要介紹“java中sleep()和wait()的區別是什么”,在日常操作中,相信很多人在java中sleep()和wait()的區別是什么問題上存在疑惑,小編查閱了各式資料,整理出簡單好用的操作方法,希望對大家解答”java中sleep()和wait()的區別是什么”的疑惑有所幫助!接下來,請跟著小編一起來學習吧!
區別說明
1、wait()是Object的方法,sleep()是Thread的方法。
2、wait()必須采用同步方法,不需要sleep()方法。
3、線程在同步方法中執行sleep()方法,不釋放monitor鎖,wait()方法釋放monitor鎖。
短暫休眠后,sleep()方法會主動退出阻塞,而wait()方法需要在沒有指定wait時間的情況下被其他線程中斷才能退出阻塞。
實例
import java.text.SimpleDateFormat; import java.util.Date; public class TestSleepAndWait { public static void main(String[] args) { new Thread1().start(); try { Thread.sleep(100); } catch (InterruptedException e) { e.printStackTrace(); } new Thread2().start(); } } class Thread1 extends Thread{ private void sout(String s){ System.out.println(s+" "+new SimpleDateFormat("HH:mm:ss:SS").format(new Date())); } @Override public void run() { sout("enter Thread1.run"); synchronized (TestSleepAndWait.class){//wait只能在同步代碼塊或者同步方法中使用 sout("Thread1 is going to wait"); try { TestSleepAndWait.class.wait(); // 這里只能使用持有鎖TestSleepAndWait.class.wait(),使用其他對象則報錯java.lang.IllegalMonitorStateException } catch (InterruptedException e) { e.printStackTrace(); } sout("after waiting, thread1 is going on"); sout("thread1 is over"); } } } class Thread2 extends Thread{ private void sout(String s){ System.out.println(s+" "+new SimpleDateFormat("HH:mm:ss:SS").format(new Date())); } @Override public void run() { sout("enter Thread2.run"); synchronized (TestSleepAndWait.class){//wait只能在同步代碼塊或者同步方法中使用 sout("Thread2 is going to notify"); TestSleepAndWait.class.notify(); 這里只能使用持有鎖TestSleepAndWait.class sout("thread2 is going to sleep 10ms"); try { Thread.sleep(10); } catch (InterruptedException e) { e.printStackTrace(); } sout("after sleeping, thread2 is going on"); sout("thread2 is over"); } } }
到此,關于“java中sleep()和wait()的區別是什么”的學習就結束了,希望能夠解決大家的疑惑。理論與實踐的搭配能更好的幫助大家學習,快去試試吧!若想繼續學習更多相關知識,請繼續關注億速云網站,小編會繼續努力為大家帶來更多實用的文章!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。