這篇文章將為大家詳細(xì)講解有關(guān)如何在Java中實(shí)現(xiàn)線程等待,文章內(nèi)容質(zhì)量較高,因此小編分享給大家做個參考,希望大家閱讀完這篇文章后對相關(guān)知識有一定的了解。
站在用戶的角度思考問題,與客戶深入溝通,找到永寧網(wǎng)站設(shè)計與永寧網(wǎng)站推廣的解決方案,憑借多年的經(jīng)驗(yàn),讓設(shè)計與互聯(lián)網(wǎng)技術(shù)結(jié)合,創(chuàng)造個性化、用戶體驗(yàn)好的作品,建站類型包括:做網(wǎng)站、成都網(wǎng)站建設(shè)、企業(yè)官網(wǎng)、英文網(wǎng)站、手機(jī)端網(wǎng)站、網(wǎng)站推廣、域名注冊、網(wǎng)站空間、企業(yè)郵箱。業(yè)務(wù)覆蓋永寧地區(qū)。Java是什么Java是一門面向?qū)ο缶幊陶Z言,可以編寫桌面應(yīng)用程序、Web應(yīng)用程序、分布式系統(tǒng)和嵌入式系統(tǒng)應(yīng)用程序。
線程等待
public class Hello { public static void main(String[] args) { A a = new A(); new Thread(new MyRun(a)).start(); new Thread(new MyRun1(a)).start(); } } class MyRun implements Runnable { private A a; public MyRun(A a) { this.a = a; } @Override public void run() { synchronized (a) { a.setTitle("hello"); try { a.wait(); } catch (InterruptedException e) { e.printStackTrace(); } a.setNumber(12); System.out.println(a); } } } class MyRun1 implements Runnable { private A a; public MyRun1(A a) { this.a = a; } @Override public void run() { synchronized (a) { a.setTitle("world"); a.setNumber(24); a.notifyAll(); System.out.println(a); } } } class A { private String title; private Integer number; public String getTitle() { return title; } public void setTitle(String title) { this.title = title; } public Integer getNumber() { return number; } public void setNumber(Integer number) { this.number = number; } @Override public String toString() { return "A{" + "title='" + title + '\'' + ", number=" + number + '}'; } }
運(yùn)行輸出:
A{title='world', number=24}
A{title='world', number=12}
線程等待,obj.wait()
,會釋放當(dāng)前的鎖,對象的普通方法,obj.wait(超時時間)
,表示指定時間后可以自動喚醒
線程喚醒,obj.notify()
,喚醒一個線程,obj.notifyAll()
,喚醒所以線程,obj需要和線程等待的對象一致。
關(guān)于如何在Java中實(shí)現(xiàn)線程等待就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,可以學(xué)到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。