//售票的小程序。
//并且是两个窗口同时售票。
class Ticket extends Thread
{
private static int ti=100;//为什么这儿加上static修饰符就不是“二百张票了”?????
Ticket()
{
super();
}
Ticket(String name)
{
super(name);
}
public void run()
{
while(true)
{
if(ti>0)
System.out.println(this.getName()+"run-----"+ti--);
}
}
}
public class Td
{
public static void main(String[] args)
{
Ticket t=new Ticket("one++++");
Ticket t1=new Ticket("two++++");
t.start();
t1.start();
}
}
|