- 浏览: 468376 次
- 性别:
- 来自: 杭州
文章分类
- 全部博客 (146)
- Maven (3)
- Quartz (10)
- Hessian (3)
- JDK (42)
- eclipse (4)
- 设计思想 (6)
- XML (8)
- JavaMail (1)
- Spring (11)
- mina (1)
- HsqlDb (1)
- Cache (2)
- Tool (6)
- 心情 (5)
- JQuery (0)
- Hadoop (5)
- Hbase (3)
- 自动构建 (7)
- JNDI (0)
- 代码赏析 (5)
- Oracle (1)
- Excel (4)
- Effective Java (5)
- JAXB (4)
- fdafasdf (1)
- ccc (0)
- web (3)
- concurrent (1)
- CVS (1)
- eclipse plugin (2)
- Apache (10)
最新评论
-
chxiaowu:
nice!
Quartz实现固定执行次数 -
zxjlwt:
学习了。http://surenpi.com
自定义ClassLoader -
kadlly:
public static final Logger log ...
Hessian 权限认证 -
spring_springmvc:
java程序语言学习教程 地址http://www.zuida ...
Java-Final -
liushuiwuyan:
[img][/img]
设计模式-单例
需求: 多个生产者不断的生产产品,多个消费者不断的消费产品,仓库可以存放10个产品。 第一批产品需要生产20个产品,并消费完毕。
结论: 当使用一个生产者,一个消费者是,需要4610,使用7个生产者,7个消费者时,只需要900,可见当N个任务耗时长,使用多线程可以充分发挥多核CPU的优点.
what do you care?
结论: 当使用一个生产者,一个消费者是,需要4610,使用7个生产者,7个消费者时,只需要900,可见当N个任务耗时长,使用多线程可以充分发挥多核CPU的优点.
package ycl.learn.effective.java.thread.pc; /** * 公共资源类 */ public class PublicResource { private int number = 0; private int index = 0; public static final int MAX_POOL = 10; public static final Product[] products = new Product[MAX_POOL]; public static final int MAX_RESOURCE = 20; /** * 增加公共资源 */ public synchronized boolean increace() { if(isComplete()){//生产任务完成 return false; } while (isFull()) { try { wait(); } catch (InterruptedException e) { e.printStackTrace(); } } number++; index++; Product p = new Product(index); products[number-1]=p; notifyAll(); System.out.println(Thread.currentThread()+"increace:" + index); return true; } /** * 减少公共资源 */ public synchronized boolean decreace() { while (isEmpty()) { try { if(isComplete()){//如果消费结束,将会死锁,因为isEmpty()is true forever, 所以不管你如何notify,他始终等待,添加当wait被notify时,消费任务完成,退出。 return false; } wait(); } catch (InterruptedException e) { e.printStackTrace(); } } Product p =products[number-1]; number--; notifyAll(); System.out.println(Thread.currentThread()+"decreace:" + p.index); return true; } /** * 判断是否满了 */ public boolean isFull() { return number >= MAX_POOL; } /** * 判断是否空了 */ public boolean isEmpty() { return number <= 0; } /** * 判断生产完毕 * */ public boolean isComplete() { return index >= MAX_RESOURCE; } class Product{ public int index; public Product(int index){ this.index = index; } } }
package ycl.learn.effective.java.thread.pc; public class Productor implements Runnable { private PublicResource ps; public Productor(PublicResource ps) { this.ps = ps; } public void run() { while (true) { boolean flag = ps.increace(); if(!flag){ System.out.println(Thread.currentThread()+" exist"); break; } try { Thread.sleep((int) (Math.random() * 500)); } catch (InterruptedException e) { e.printStackTrace(); } } } }
package ycl.learn.effective.java.thread.pc; public class Customer implements Runnable { private PublicResource ps; public Customer(PublicResource ps) { this.ps = ps; } public void run() { while (true) { boolean flag = ps.decreace(); if(!flag){ System.out.println(Thread.currentThread()+" exist"); break; } try { Thread.sleep((int) (Math.random() * 500)); } catch (InterruptedException e) { e.printStackTrace(); } } } }
package ycl.learn.effective.java.thread.pc; public class TestPC { /** * @param args */ public static void main(String[] args) { // TODO Auto-generated method stub one(); } public static void one() throws InterruptedException{ long start = System.currentTimeMillis(); PublicResource ps = new PublicResource(); Customer c = new Customer(ps); Productor p = new Productor(ps); Thread ct = new Thread(c,"customer0"); Thread ct1 = new Thread(c,"customer1"); Thread ct2 = new Thread(c,"customer2"); Thread ct3 = new Thread(c,"customer3"); Thread ct4 = new Thread(c,"customer4"); Thread ct5 = new Thread(c,"customer5"); Thread ct6 = new Thread(c,"customer6"); Thread pt = new Thread(p,"productor0"); Thread pt1 = new Thread(p,"productor1"); Thread pt2 = new Thread(p,"productor2"); Thread pt3 = new Thread(p,"productor3"); Thread pt4 = new Thread(p,"productor4"); Thread pt5 = new Thread(p,"productor5"); Thread pt6 = new Thread(p,"productor6"); ct.start(); ct1.start(); ct2.start(); ct3.start(); ct4.start(); ct5.start(); ct6.start(); pt.start(); pt1.start(); pt2.start(); pt3.start(); pt4.start(); pt5.start(); pt6.start(); ct.join(); ct1.join(); ct2.join(); ct3.join(); ct4.join(); ct5.join(); ct6.join(); pt.join(); pt1.join(); pt2.join(); pt3.join(); pt4.join(); pt5.join(); pt6.join(); System.out.println(System.currentTimeMillis()-start);//4968 } }
Thread[productor0,5,main]increace:1 Thread[customer5,5,main]decreace:1 Thread[productor2,5,main]increace:2 Thread[customer0,5,main]decreace:2 Thread[productor0,5,main]increace:3 Thread[customer4,5,main]decreace:3 Thread[productor1,5,main]increace:4 Thread[productor4,5,main]increace:5 Thread[customer1,5,main]decreace:5 Thread[customer3,5,main]decreace:4 Thread[productor3,5,main]increace:6 Thread[customer6,5,main]decreace:6 Thread[productor6,5,main]increace:7 Thread[customer2,5,main]decreace:7 Thread[productor5,5,main]increace:8 Thread[customer6,5,main]decreace:8 Thread[productor2,5,main]increace:9 Thread[customer3,5,main]decreace:9 Thread[productor4,5,main]increace:10 Thread[customer4,5,main]decreace:10 Thread[productor6,5,main]increace:11 Thread[customer5,5,main]decreace:11 Thread[productor1,5,main]increace:12 Thread[customer0,5,main]decreace:12 Thread[productor1,5,main]increace:13 Thread[customer2,5,main]decreace:13 Thread[productor6,5,main]increace:14 Thread[customer3,5,main]decreace:14 Thread[productor1,5,main]increace:15 Thread[customer1,5,main]decreace:15 Thread[productor1,5,main]increace:16 Thread[customer2,5,main]decreace:16 Thread[productor5,5,main]increace:17 Thread[customer3,5,main]decreace:17 Thread[productor2,5,main]increace:18 Thread[customer4,5,main]decreace:18 Thread[productor0,5,main]increace:19 Thread[customer4,5,main]decreace:19 Thread[productor3,5,main]increace:20 Thread[productor5,5,main] exist Thread[productor4,5,main] exist Thread[customer6,5,main]decreace:20 Thread[productor1,5,main] exist Thread[customer1,5,main] exist Thread[customer5,5,main] exist Thread[productor0,5,main] exist Thread[customer0,5,main] exist Thread[customer4,5,main] exist Thread[productor6,5,main] exist Thread[productor2,5,main] exist Thread[customer6,5,main] exist Thread[productor3,5,main] exist Thread[customer2,5,main] exist Thread[customer3,5,main] exist 875
评论
2 楼
a123159521
2014-04-10
putonyuer 写道
画图用了多长时间?》
what do you care?
1 楼
putonyuer
2014-04-07
画图用了多长时间?》
发表评论
-
Java Application Cache
2016-09-27 19:25 884Application Cache is used very ... -
Java 字符串分词
2015-01-02 14:43 1749在Java的世界里有个类型 ... -
jdk 1.6 新特性,集成Groovy, 性能很差
2014-04-02 14:27 1276性能都是相对的,如果调用量不是很大的话,可以忽略,毕竟使用为主 ... -
Fake Code easy implements
2014-04-01 15:41 1026package org.miniframe.modules ... -
JDK regex 用法及用途
2014-03-31 15:48 1214查找 Boolean flag = pattern.mat ... -
生产者消费者(四)
2014-03-04 12:32 1147需求: 多个生产者不断的生产产品,多个消费者不断的消费产品,仓 ... -
生产者消费者(三)
2014-03-04 10:59 960需求: 多个生产者不断的生产产品,多个消费者不断的消费产品,仓 ... -
生产者消费者(二)
2014-03-03 15:40 695需求: 多个生产者不断的生产产品,多个消费者不断的消费产品,仓 ... -
查看Class文件使用的JDK版本
2013-10-30 14:17 1115由于JDK一般是向下兼容的,所以有时候本地的JDK版本比类库的 ... -
Java源代码转码
2012-12-20 17:22 1323现在中国的项目很多,编码无非是UTF-8,GBK,GB2312 ... -
Tomcat集成OSGI,并通过JNDI开放Web调用
2012-12-03 11:22 3135Tomcat集成OSGi,首先要选择OSGI服务器,我这里采用 ... -
JDK的Logging
2012-11-07 15:49 1683jdk自带有一个log日志,对于一般的使用,仅够了. 代码如下 ... -
java.util.*
2012-11-06 14:23 1377java.util 工具包,灰常的有用,有机会一定要研读源码。 ... -
java.util.concurrent.*
2012-11-02 10:38 17761. java.util.concurrent.ArrayBl ... -
java.util.rt.*
2012-10-31 13:51 11131. java.util.HashMap 散列表,主要是以离散 ... -
巧秒设计方法,不返回null
2016-09-27 19:32 723/** * {@inheritDoc} * ... -
java doc 代码文档
2012-07-13 13:58 1330对于代码规范不解释了,网上很多。 在编写代码的时候,有一点灰 ... -
接口与抽象类
2012-07-11 16:53 11241. 接口设计必谨慎,除非业务变更,否则打死不能动接口。[不变 ... -
JVM优化机制好诡异
2012-04-20 08:43 1466long i[] = new long[1000000]; ... -
JVM优化机制好诡异
2016-09-27 19:32 562long i[] = new long[100000 ...
相关推荐
生产者消费者模式是一种多线程或并发编程中的经典设计模式,它主要用于解决系统资源的高效利用和同步问题。在C++中实现生产者消费者模式,我们可以利用C++11及更高版本提供的线程库()、互斥量()、条件变量()等...
创建一个简单的生产者消费者模型,可以使用以下伪代码: ```java class Producer implements Runnable { private final BlockingQueue<String> queue; public Producer(BlockingQueue<String> queue) { this....
在Java编程中,生产者消费者模式是一种典型的多线程协作模型,用于解决系统资源供需不平衡的问题。这个模式的核心思想是将生产数据和消费数据的过程解耦,使得生产者可以独立地生产数据,而消费者可以独立地消费数据...
生产者消费者模式是一种多线程同步的经典设计模式,它在多线程编程中扮演着重要的角色,用于协调生产数据和消费数据的两个并发过程。在本项目“Qt C++11 生产者消费者模式类”中,我们看到利用Qt框架和C++11的新特性...
labview 基于事件的生产者消费者模式
【生产者/消费者模式】是一种常见的并发编程和系统设计模式,它主要解决的是在多线程环境下,如何协调生产者和消费者之间的数据处理问题。在软件开发中,生产者通常是生成数据的一方,而消费者则是处理这些数据的...
在这个场景下,我们关注的是一个经典的并发编程模型——生产者消费者模式。该模式是多进程同步的一种典型应用,通过它我们可以高效地管理数据的生产和消费。 生产者消费者模式基于操作系统提供的信号量(Semaphore...
生产者消费者模式是一种经典的多线程同步问题解决方案,它源于现实世界中的生产流水线,用于描述生产者(Producer)和消费者(Consumer)之间的协作关系。在这个模式中,生产者负责生成产品并放入仓库,而消费者则从...
生产者消费者模式的构建可以实现系统的高内聚和低耦合,这使得它成为软件开发中经常采用的一种设计方法。 生产者消费者模式的核心思想在于生产者和消费者之间的角色分离。在这个模式中,生产者的主要任务是生成数据...
【生产者与消费者模式】是一种经典的设计模式,它在解决多客户端与服务器之间的数据交换与传输问题上有着广泛的应用。该模式的核心思想是通过一个中间缓冲区,将生产数据的过程与消费数据的过程解耦,使得生产者可以...
7. **例程分析**:在提供的"生产者消费者"例程中,可能包含了创建生产者和消费者线程、初始化队列、添加数据到队列、从队列中取出数据、以及使用同步机制保证正确性的代码片段。通过对这些例程的分析和运行,可以...
生产者消费者模式是一种经典的多线程同步问题,用于在并发环境中协调生产者和消费者之间的数据处理。在这个模式中,生产者负责生成数据,而消费者则负责处理这些数据。Java提供了丰富的并发工具,如`BlockingQueue`...
在Android开发中,生产者-消费者模式是一种常见的多线程设计模式,用于处理并发问题,尤其是在数据处理和异步操作中。这个模式的核心思想是通过一个共享的数据缓冲区,使得生产者线程可以生成数据并放入缓冲区,而...
Java多线程编程是开发高并发、高性能应用的关键技术之一,而生产者消费者模式是多线程编程中常用的一种设计模式。它通过分离数据的生产和消费过程,实现了线程间的协同工作,有效避免了资源的竞争和浪费。在这个模式...
生产者消费者synchronized实现方式
生产者消费者模式是一种经典的多线程同步问题解决方案,在Java中有着广泛的应用。它主要用于解决系统中数据处理的并发问题,确保生产者线程与消费者线程之间的协作与数据的有序处理。这种模式遵循一个基本原理:生产...
生产者消费者模式是一种经典的多线程设计模式,它用于协调两个或多个线程之间的数据交换,确保数据的正确生产和消费。 生产者消费者模式的核心思想是通过共享缓冲区来实现线程间的通信。生产者线程负责生成数据并放...
生产者-消费者模式是一种经典的多线程设计模式,用于解决数据共享问题,尤其是在一个线程生产数据而另一个线程消费数据的情况下。在这个模式中,生产者负责生成数据并放入共享的数据结构(如队列),而消费者则从这...
在早期版本中,Redis 提供了一种基于队列的数据结构来实现生产者消费者模式,这是一种多线程或分布式系统中常见的设计模式,用于解耦数据生成(生产者)与数据处理(消费者)的过程。 生产者消费者模式在 Redis 中...