黑马程序员技术交流社区
标题:
多线程(线程间通信——代码优化)其实少优化了一个地方
[打印本页]
作者:
汪洋大海
时间:
2013-10-24 21:22
标题:
多线程(线程间通信——代码优化)其实少优化了一个地方
class Res
{
private String name;
private String sex;
private boolean flag = false;
public synchronized void set(String name,String sex)
{
if(flag)
try{this.wait();}catch(Exception e){}
this.name = name;
this.sex = sex;
flag = true;
this.notify();
}
public synchronized void out()
{
if(!flag)
try{this.wait();}catch(Exception e){}
System.out.println(name+"........"+sex);
flag = false;
this.notify();
}
}
class Input implements Runnable
{
private Res r ;
Input(Res r)
{
this.r = r;
}
public void run()
{
int x = 0;
while(true)
{
if(x==0) //这里可以去掉
r.set("mike","man");
else //这里可以去掉
r.set("丽丽","女女女女女");
x = (x+1)%2; //这里可以去掉
}
}
}
class Output implements Runnable
{
private Res r ;
Output(Res r)
{
this.r = r;
}
public void run()
{
while(true)
{
r.out();
}
}
}
class InputOutputDemo2
{
public static void main(String[] args)
{
Res r = new Res();
new Thread(new Input(r)).start();
new Thread(new Output(r)).start();
/*
Input in = new Input(r);
Output out = new Output(r);
Thread t1 = new Thread(in);
Thread t2 = new Thread(out);
t1.start();
t2.start();
*/
}
}
复制代码
毕老师忘了删除那三句话。刚好看到这里就发现了。呵呵。
作者:
風諾
时间:
2013-10-24 23:11
为什么要去掉?
作者:
漫步人
时间:
2013-10-24 23:39
是啊!为什么?
欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/)
黑马程序员IT技术论坛 X3.2