日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 编程资源 > 编程问答 >内容正文

编程问答

线程的简单生产消费模式

發(fā)布時間:2025/3/20 编程问答 29 豆豆
生活随笔 收集整理的這篇文章主要介紹了 线程的简单生产消费模式 小編覺得挺不錯的,現(xiàn)在分享給大家,幫大家做個參考.
Student類 package july.star.thread14;/*** Student* @author MoXingJian* @email 939697374@qq.com* @date 2016年11月30日 下午3:39:45* @version 1.0*/ public class Student {private String name;private int age;private boolean flag;public synchronized void set(String name,int age){//如果有數(shù)據(jù),就等待if(flag){try {wait();} catch (InterruptedException e) {e.printStackTrace();}}this.name = name;this.age = age;//標識this.flag = true;notify(); //喚醒}public synchronized String get(){//如果沒有數(shù)據(jù),等待if(!flag){try {wait();} catch (InterruptedException e) {e.printStackTrace();}}System.out.println(this.name+":"+this.age);this.flag = false;this.notify();return name;} }SetThread設置線程,賦值 package july.star.thread14; /*** SetThread** @author MoXingJian* @email 939697374@qq.com* @date 2016年11月30日 下午3:40:31* @version 1.0*/ public class SetThread implements Runnable {private Student s;private int count;public SetThread(Student s) {this.s = s;}@Overridepublic void run() {while (true) {if (count % 2 == 0) {s.set("一非", 21);count++;} else {s.set("辣雞", 30);count++;}}} }GetThread獲取值 package july.star.thread14; /*** GetThread** @author MoXingJian* @email 939697374@qq.com* @date 2016年11月30日 下午3:42:05* @version 1.0*/ public class GetThread implements Runnable {private Student s;public GetThread(Student s) {this.s = s;}@Overridepublic void run() {while (true) {s.get();}} }測試 package july.star.thread14;/*** 簡單生產(chǎn)消費模式* @author MoXingJian* @email 939697374@qq.com* @date 2016年11月30日 下午3:43:19* @version 1.0*/ public class TestThread {public static void main(String[] args) {Student s = new Student();SetThread st = new SetThread(s);GetThread gt = new GetThread(s);Thread t1 = new Thread(st);Thread t2 = new Thread(gt);t1.start();t2.start();} }

總結

以上是生活随笔為你收集整理的线程的简单生产消费模式的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網(wǎng)站內容還不錯,歡迎將生活随笔推薦給好友。