class B extends Thread{
private int tar=5;
public void run(){
for(int i = 1;i<100;i++){
if(tar>0){
System.out.println("卖票 =" +tar--);
}
}
}
}
public class TestThread01 {
public static void main(String[] args) {
B a = new B();
a.start();
a.start();
a.start();
}
}
为什么Runnable接口可以这样写而Thread不行 Thread这样写也能只卖五张票啊,,,