zoukankan      html  css  js  c++  java
  • Java基础多线程间通讯之多生产者、多消费者模式示例:

    class ProducerConsumerDemo
    {
        public static void main(String[] args)
        {
            Product product = new Product();
            
            new Thread(new Producer(product)).start();
            new Thread(new Consumer(product)).start();
            new Thread(new Producer(product)).start();
            new Thread(new Consumer(product)).start();
            new Thread(new Producer(product)).start();
            new Thread(new Consumer(product)).start();
            new Thread(new Producer(product)).start();
            new Thread(new Consumer(product)).start();
        }
    }

    class Product
    {
        private int count;
        private boolean flag;

        public synchronized void create()
        {
            
            while(this.flag)
            {
                try
                {
                    this.wait();
                }
                catch(Exception e)
                {
                    System.err.println(e.getMessage());
                }
            }
                
            this.count++;    
            System.out.println(Thread.currentThread().getName()+" create -- :"+this.count);
            this.flag = true;
            this.notifyAll();
                
            try
            {
                Thread.sleep(300);
            }
            catch(Exception e)
            {
                System.err.println(e.getMessage());
            }
            
        }
        
        public synchronized void get()
        {
            while(!this.flag)
            {
                try
                {
                    this.wait();
                }
                catch(Exception e)
                {
                    System.err.println(e.getMessage());
                }
            }
                
            System.out.println(Thread.currentThread().getName()+" sale:"+this.count);
            this.flag = false;
            this.notifyAll();
                
            try
            {
                Thread.sleep(600);
            }
            catch(Exception e)
            {
                System.err.println(e.getMessage());
            }
            
        }
    }

    class Producer implements Runnable
    {
        private Product product;
        
        public Producer(Product product)
        {
            this.product = product;
        }
        
        public void run()
        {
            while(true)
            {
                product.create();
            }
        }
    }

    class Consumer implements Runnable
    {
        private Product product;
        
        public Consumer(Product product)
        {
            this.product = product;
        }
        
        public void run()
        {
            while(true)
            {
                product.get();
            }
        }
    }
  • 相关阅读:
    maven管理jar,pom.xml导入spring依赖
    三分钟明白 Activiti工作流 -- java运用
    Java框架之spring—jdbcTemplate
    Activiti BPMN 2.0 designer eclipse插件安装
    eclipse离线安装Activiti Designer插件
    eclipse oxygen离线安装activiti
    使用spring注解——定义bean和自动注入
    web.config中配置数据库连接的两种方式
    Java的三种代理模式
    03 Spring框架 bean的属性以及bean前处理和bean后处理
  • 原文地址:https://www.cnblogs.com/cxmsky/p/2860936.html
Copyright © 2011-2022 走看看