线程的简单生产消费模式

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){
           //如果有数据,就等待
           if(flag){
               try {
                   wait();
              } catch (InterruptedException e) {
                   e.printStackTrace();
              }
          }
              this.name = name;
              this.age = age;
              
              //标识
              this.flag = true;
              notify(); //唤醒
      }
     
     
      public synchronized String get(){
           //如果没有数据,等待
           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;
     }
     @Override
     public 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;
     }
     @Override
     public void run() {
          while (true) {
              s.get();
          }
     }
}



测试
package july.star.thread14;
 /**
  * 简单生产消费模式
  * @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();
     }
}

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值