以下程序创建并启动了一个线程。
class Lefthand extends Thread{
public void____①____{
for( int i=0;i< =5;i++ ){
System.out.printIn("You are Students!");
try{ sleep(500); }catch( InteruptedException e){}
}
}
}
public class Test27{
static Lefthand left;
public static void main( String[] args ){
left = new____②____;
left.____③____;
}
}
①run()
②Lefthand()
③start()