我用多线程编了一个小时候4个人占三个座位那一类的东西
可以遇上了点麻烦
程序如下
public class threadTest6
{
int num=8;
synchronized public void snatch(int num)//注意同步关键字的位置
{
int temp=1;
if(num>temp)
{
//this.num--;
System.out.println("名字是: "+Thread.currentThread().getName()+" 抢到了第"+
(num--)+"座位");
try
{
Thread.sleep(10);
}
catch(Exception e)
{
e.printStackTrace();
}
}
else
{
System.out.println("这一次是"+Thread.currentThread().getName()+",没抢到板凳^_^");
try
{Thread.currentThread().join();
}
catch(Exception e)
{
e.printStackTrace();
}
System.out.println(Thread.currentThread().isAlive());
}
temp++;
}
public static void main(String[] args)
{
/*Counter c = new Counter();
CounterAdjuster ca[] = new CounterAdjuster[100];
for (int i=0; i<100; i++) { // 100 threads
ca[i] = new CounterAdjuster(c);
ca[i].start();
}*/
threadTest6 tt=new threadTest6();
vip Vi=new vip(tt);
for(int i=0;i<tt.num;i++)
{new Thread(Vi).start();
/*try//这里为什么睡眠一段时间就不对了??????????????
{
Thread.sleep(1);
}
catch(Exception e)
{
e.printStackTrace();
}*/
}
}
}
class vip implements Runnable
{
threadTest6 tt6;
public vip(threadTest6 t)
{
tt6=t;
}
public void run()
{
try
{
Thread.sleep(10);
}
catch(Exception e)
{
e.printStackTrace();
}
tt6.snatch(tt6.num--);
}
}
我的问题是
如何能把上面没在join中的线程再集中下来重新进行循环
或者那个高人有高招 望不吝赐教
感激不尽