本帖最后由 337091921 于 2013-5-12 18:28 编辑
//四个窗口卖票
class Test
{
public static void main(String args [])
{
//tic ti=new tic("线程名字");调用构造函数
tic ti=new tic();
Thread t=new Thread(ti);
Thread t1=new Thread(ti);
Thread t2=new Thread(ti);
Thread t3=new Thread(ti);
t.start();
t1.start();
t2.start();
t3.start();
}
}
class tic implements Runnable
{
private int num=100;
/*private String name;//创建了一个构造函数,想给线程起名子,可惜不可以
tic(String name)
{
super();
}
*/
public void run(){
while(true){
if(num>0){
System.out.println(Thread.currentThread().getName()+" ======="+num--);
}
}
}
} |