本帖最后由 小悠久 于 2014-1-15 20:50 编辑
关于售票这个问题,我用继承Tread方法,在毕老师是将票数直接在输出里tick--,我将它放到下边为什么就不行啦,是多线程安全的问题吗?那为什么加入同步代码块也不行?麻烦各位帮忙看下,谢谢啦
public class threadTest {
/**
* @param args
*/
public static void main(String[] args) {
// TODO Auto-generated method stub
c t0= new c();
c t1= new c();
c t2= new c();
t0.start();
t1.start();
t2.start();
}
}
class c extends Thread
{
private static int count=100;
public void run()
{
while(true){
synchronized (this) {
if(count>0)
{
System.out.println(Thread.currentThread().getName()+":"+count);
count--; //我将递减放到下面为什么会出现重复的数,如果是多线程安全问题,为什么同步代码块也不行
}
else{
return;
}
}
}
}
}
|
|