1.wait()方法和sleep()方法:
站在用戶的角度思考問題,與客戶深入溝通,找到齊河網(wǎng)站設(shè)計(jì)與齊河網(wǎng)站推廣的解決方案,憑借多年的經(jīng)驗(yàn),讓設(shè)計(jì)與互聯(lián)網(wǎng)技術(shù)結(jié)合,創(chuàng)造個(gè)性化、用戶體驗(yàn)好的作品,建站類型包括:成都做網(wǎng)站、成都網(wǎng)站設(shè)計(jì)、企業(yè)官網(wǎng)、英文網(wǎng)站、手機(jī)端網(wǎng)站、網(wǎng)站推廣、域名與空間、網(wǎng)絡(luò)空間、企業(yè)郵箱。業(yè)務(wù)覆蓋齊河地區(qū)。
wait()方法在等待中釋放鎖;sleep()在等待的時(shí)候不會(huì)釋放鎖,抱著鎖睡眠。
2.notify():
隨機(jī)喚醒一個(gè)線程,將等待隊(duì)列中的一個(gè)等待線程從等待隊(duì)列中移到同步隊(duì)列中。
代碼如下
public class Demo_Print { public static void main(String[] args) { Print p = new Print(); new Thread() { public void run() { while (true) { p.print1(); } }; }.start(); new Thread() { public void run() { while (true) { p.print2(); } }; }.start(); } } class Print { int flag = 1; public synchronized void print1() { if (flag != 1) { try { this.wait(); } catch (InterruptedException e) { // TODO Auto-generated catch block e.printStackTrace(); } } System.out.print("你"); System.out.print("好"); System.out.print("嗎????????????"); System.out.println(); flag = 2; this.notify(); } public synchronized void print2() { if (flag != 2) { try { this.wait(); } catch (InterruptedException e) { // TODO Auto-generated catch block e.printStackTrace(); } } System.out.print("我"); System.out.print("好"); System.out.println(); flag = 1; this.notify(); } }
在該案例中,實(shí)現(xiàn)一問一答的線程同步通信。當(dāng)方法中開啟了wait()方法后,通過改變flag的值來喚醒線程進(jìn)而實(shí)行另一個(gè)方法。
以上就是本文的全部?jī)?nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持創(chuàng)新互聯(lián)。
網(wǎng)站標(biāo)題:Java多線程通信wait()和notify()代碼實(shí)例
分享路徑:http://muchs.cn/article32/gjghpc.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供搜索引擎優(yōu)化、微信公眾號(hào)、外貿(mào)網(wǎng)站建設(shè)、網(wǎng)站建設(shè)、服務(wù)器托管、企業(yè)建站
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如需處理請(qǐng)聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來源: 創(chuàng)新互聯(lián)
網(wǎng)頁(yè)設(shè)計(jì)公司知識(shí)