本篇文章為大家展示了JAVA中怎么使用synchronized、wait、notify實現同步通信,內容簡明扼要并且容易理解,絕對能使你眼前一亮,通過這篇文章的詳細介紹希望你能有所收獲。
創新互聯專業為企業提供三元網站建設、三元做網站、三元網站設計、三元網站制作等企業網站建設、網頁設計與制作、三元企業網站模板建站服務,10年三元做網站經驗,不只是建網站,更提供有價值的思路和整體網絡服務。
package com.study; public class Demo { public static void main(String[] args) { Demo demo = new Demo(); final OutPutClass putPutClass = demo.new OutPutClass(); Thread thread = new Thread(new Runnable() { @Override public void run() { while(true){ putPutClass.ins(); } } }); thread.start(); Thread thread2 = new Thread(new Runnable() { @Override public void run() { while(true){ putPutClass.des(); } } }); thread2.start(); } class OutPutClass{ private boolean isSync = true; public synchronized void ins(){ try { while(!isSync){ this.wait(); } Thread.sleep(1000L); } catch (InterruptedException e) { e.printStackTrace(); } System.out.println("正在上傳中...."); isSync = false; this.notify(); } public synchronized void des(){ while(isSync){ try { this.wait(); Thread.sleep(1000L); } catch (InterruptedException e) { e.printStackTrace(); } } System.out.println("下載結束...."); isSync = true; this.notify(); } } }
上述內容就是JAVA中怎么使用synchronized、wait、notify實現同步通信,你們學到知識或技能了嗎?如果還想學到更多技能或者豐富自己的知識儲備,歡迎關注創新互聯行業資訊頻道。
本文標題:JAVA中怎么使用synchronized、wait、notify實現同步通信
網址分享:http://vcdvsql.cn/article36/phoipg.html
成都網站建設公司_創新互聯,為您提供做網站、微信小程序、靜態網站、搜索引擎優化、網站改版、手機網站建設
聲明:本網站發布的內容(圖片、視頻和文字)以用戶投稿、用戶轉載內容為主,如果涉及侵權請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網站立場,如需處理請聯系客服。電話:028-86922220;郵箱:631063699@qq.com。內容未經允許不得轉載,或轉載時需注明來源: 創新互聯