黑马程序员技术交流社区

标题: 多线程-生产者消费者 [打印本页]

作者: kemeng    时间: 2015-3-16 15:51
标题: 多线程-生产者消费者
  1. class Demo1
  2. {
  3.         public static void main(String[] args)
  4.         {
  5.                 Resource r=new Resource();

  6.                 Producer pro=new Producer(r);
  7.                 Consumer con=new Consumer(r);

  8.                 Thread t1=new Thread(pro);
  9.                 Thread t2=new Thread(pro);
  10.                 Thread t3=new Thread(con);
  11.                 Thread t4=new Thread(con);
  12.                 t1.start();
  13.                 t2.start();
  14.                 t3.start();
  15.                 t4.start();
  16.         }
  17. }


  18. class Resource
  19. {
  20.         private String name;
  21.         private int count=1;
  22.         private boolean flag=false;

  23.         public synchronized void set(String name)
  24.         {
  25.                 while(flag)
  26.                         try
  27.                         {
  28.                                 wait();
  29.                         }
  30.                         catch (Exception e)
  31.                         {
  32.                         }
  33.                 this.name=name+"--"+count++;
  34.                 System.out.println(Thread.currentThread().getName()+"...生产者..."+this.name);
  35.                 flag=true;
  36.                 this.notifyAll();
  37.         }
  38.         public synchronized void out()
  39.         {
  40.                 while(!flag)
  41.                         try
  42.                         {
  43.                                 wait();
  44.                         }
  45.                         catch (Exception e)
  46.                         {
  47.                         }
  48.                 System.out.println(Thread.currentThread().getName()+"消费者"+this.name);
  49.                 flag=false;
  50.                 this.notifyAll();
  51.         }
  52. }

  53. class Producer implements Runnable
  54. {
  55.         private Resource res;
  56.         Producer(Resource res)
  57.         {
  58.                 this.res=res;
  59.         }
  60.         public void run()
  61.         {
  62.                 while(true)
  63.                 {
  64.                         res.set("+商品+");
  65.                 }
  66.         }
  67. }
  68. class Consumer implements Runnable
  69. {
  70.         private Resource res;
  71.         Consumer(Resource res)
  72.         {
  73.                 this.res=res;
  74.         }
  75.         public void run()
  76.         {
  77.                 while(true)
  78.                 {
  79.                         res.out();
  80.                 }
  81.         }
  82. }
复制代码







欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/) 黑马程序员IT技术论坛 X3.2