码迷,mamicode.com
首页 > 编程语言 > 详细

Java 多线程 通信 通道 (猫狗赛跑)

时间:2017-04-30 01:05:16      阅读:214      评论:0      收藏:0      [点我收藏+]

标签:ext   ons   write   生产者   输入流   ica   nts   通道   tac   

package thread;

import java.io.IOException;
import java.io.PipedInputStream;
import java.io.PipedOutputStream;

public class CommunicateWhitPiping
{
public static void main(String[] args) {
// 创建管道输出流
PipedOutputStream pipedOutputStream = new PipedOutputStream();
// 创建管道输入流
PipedInputStream pipedInputStream = new PipedInputStream();
try {
// 将管道输入流与输出流连接 此过程也可通过重载的构造函数来实现
pipedOutputStream.connect(pipedInputStream);
} catch (IOException e) {
e.printStackTrace();
}
// 创建生产者线程
Producer p = new Producer(pipedOutputStream);
// 创建消费者线程
Consumer c = new Consumer(pipedInputStream);
// 启动线程
p.start();
c.start();
}
}

/**
* 生产者线程(与一个管道输出流相关联)
*/
class Producer extends Thread //狗
{
int x=0;

private PipedOutputStream pos;

public Producer(PipedOutputStream pos) {
this.pos = pos;
}

public void run()
{
while(true)
{

try {
Thread.sleep(500);
} catch (InterruptedException e1) {
// TODO 自动生成的 catch 块
e1.printStackTrace();
}



try {

pos.write(this.x);
this.x=this.x+2;
} catch (IOException e)
{
e.printStackTrace();
}
}
}
}

/**
* 消费者线程(与一个管道输入流相关联)
*/
class Consumer extends Thread //猫
{int x=50;
private PipedInputStream pis;

public Consumer(PipedInputStream pis) {
this.pis = pis;
}

public void run()
{
int dogx = 0;
while(true)
{

try {
try {
Thread.sleep(500);
} catch (InterruptedException e) {
// TODO 自动生成的 catch 块
e.printStackTrace();
}



dogx=pis.read();
System.out.println("猫的位置"+this.x);

System.out.println("—————————————狗的位置"+dogx);

this.x++;
if(dogx-this.x>=1)
{
System.out.println("狗超过了猫");
}

} catch (IOException e)
{
e.printStackTrace();
}
}

}
}

Java 多线程 通信 通道 (猫狗赛跑)

标签:ext   ons   write   生产者   输入流   ica   nts   通道   tac   

原文地址:http://www.cnblogs.com/-sheng/p/6786559.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!