class InputOutputDemo2
{
public static void main(String[] args)
{
Res r = new Res();
new Thread(new Input(r)).start();
new Thread(new Output(r)).start();
}
}
这样写就不会出问题了作者: 潘东升 时间: 2012-5-17 23:11
int x = 0;
把这个放到run方法的上面去吧,你放在这里就每次x==0都为真,当然就只执行if里面的语句了,哈