文件名称:Java-xianchengtongbuhuchi
- 所属分类:
- JSP源码/Java
- 资源属性:
- [Java] [源码]
- 上传时间:
- 2014-06-25
- 文件大小:
- 33kb
- 下载次数:
- 0次
- 提 供 者:
- shil****
- 相关连接:
- 无
- 下载说明:
- 别用迅雷下载,失败请重下,重下不扣分!
介绍说明--下载内容均来自于网络,请自行研究使用
Java线程间同步互斥,在实际的编程中,经常要处理线程间的同步互斥问题。Java 语言内在强大的多线程支持使得处理这类问题变得相对来说比较简单。本例将模仿经典的线程同步互斥例子——生产者和消费者问题,来演示
java 强大的多线程机制。生产者和消费者共享一个数据,当数据为0 时,消费者不可访问,生产者可访问数据,每次访问数据加1;当数据到达100 时,生产者唤醒消费者,同时自身不可访问数据,消费者可访问数据,每次访问数据减1,直到数据为0,消费者唤醒生产者,同时自身不可访问数据,如此循环。每次访问信息,显示在JTextArea 对象中。-Java thread synchronization among mutually exclusive, in the actual programming, often have to deal with the problem mutex synchronization between threads. Inherent powerful multithreaded Java language support makes deal with such issues become relatively simple. This example will mimic a classic example of thread synchronization mutex- producers and consumers, to demonstrate the powerful java multithreading. Share a data producer and consumer, when the data is 0, the consumer is not accessible, the producer may access the data, access data plus one when the data reaches 100, wake producer to consumers, while the data itself is not accessible Consumers can access data, access data by 1, until the data is 0, consumers wake producers, while the data itself is not accessible, and so on. Each time access to information, as shown in JTextArea object.
java 强大的多线程机制。生产者和消费者共享一个数据,当数据为0 时,消费者不可访问,生产者可访问数据,每次访问数据加1;当数据到达100 时,生产者唤醒消费者,同时自身不可访问数据,消费者可访问数据,每次访问数据减1,直到数据为0,消费者唤醒生产者,同时自身不可访问数据,如此循环。每次访问信息,显示在JTextArea 对象中。-Java thread synchronization among mutually exclusive, in the actual programming, often have to deal with the problem mutex synchronization between threads. Inherent powerful multithreaded Java language support makes deal with such issues become relatively simple. This example will mimic a classic example of thread synchronization mutex- producers and consumers, to demonstrate the powerful java multithreading. Share a data producer and consumer, when the data is 0, the consumer is not accessible, the producer may access the data, access data plus one when the data reaches 100, wake producer to consumers, while the data itself is not accessible Consumers can access data, access data by 1, until the data is 0, consumers wake producers, while the data itself is not accessible, and so on. Each time access to information, as shown in JTextArea object.
(系统自动生成,下载前可以参看下载内容)
下载文件列表
Java线程间同步互斥\JTHREADSYNCH\BAK\JTHREADSYNCH\CONSUMER.JAVA~1~
..................\............\...\............\CONSUMER.JAVA~2~
..................\............\...\............\JTHREADSYNCH.JAVA~1~
..................\............\...\............\MAINFRAME.JAVA~1~
..................\............\...\............\MAINFRAME.JAVA~2~
..................\............\...\............\MAINFRAME.JAVA~3~
..................\............\...\............\MAINFRAME.JAVA~4~
..................\............\...\............\MAINFRAME.JAVA~5~
..................\............\...\............\MAINFRAME.JAVA~6~
..................\............\...\............\MAINFRAME.JAVA~7~
..................\............\...\............\MAINFRAME.JAVA~8~
..................\............\...\............\MAINFRAME.JAVA~9~
..................\............\...\............\PRODUCER.JAVA~1~
..................\............\...\............\PRODUCER.JAVA~2~
..................\............\...\............\PRODUCER.JAVA~3~
..................\............\...\............\PRODUCER.JAVA~4~
..................\............\...\............\PRODUCER.JAVA~5~
..................\............\...\............\PRODUCER.JAVA~6~
..................\............\...\............\PRODUCER.JAVA~7~
..................\............\...\............\PRODUCER.JAVA~8~
..................\............\...\............\PRODUCER.JAVA~9~
..................\............\CLASSES\JTHREADSYNCH\CONSUMER.CLASS
..................\............\.......\............\JTHREADSYNCH.CLASS
..................\............\.......\............\MAINFRAME$1.CLASS
..................\............\.......\............\MAINFRAME.CLASS
..................\............\.......\............\PRODUCER.CLASS
..................\............\.......\PACKAGE CACHE\JTHREADSYNCH.DEP2
..................\............\JTHREADSYNCH.HTML
..................\............\JTHREADSYNCH.JPX
..................\............\JTHREADSYNCH.JPX.LOCAL
..................\............\JTHREADSYNCH.JPX.LOCAL~
..................\............\JTHREADSYNCH.JPX~
..................\............\SRC\JTHREADSYNCH\CONSUMER.JAVA
..................\............\...\............\JTHREADSYNCH.JAVA
..................\............\...\............\MAINFRAME.JAVA
..................\............\...\............\PRODUCER.JAVA
..................\............\BAK\JTHREADSYNCH
..................\............\CLASSES\JTHREADSYNCH
..................\............\.......\PACKAGE CACHE
..................\............\SRC\JTHREADSYNCH
..................\............\BAK
..................\............\CLASSES
..................\............\SRC
..................\JTHREADSYNCH
Java线程间同步互斥