package ticket2;
class Thread {
public static void main(String[] args) {
Ticket t=new Ticket();
t.start();//为什么这里报错,说找不到t??????????
}
}
class Ticket extends Thread{
int x=100;
public void run() {//将run改成start程序又可以运行了。。。Thread不是要有run方法吗,怎么改成start也可以运行呢????
while(true){
if(x>0){
System.out.println( " ---> "+x--);
}
}
}
}
|