填空题

以下程序创建并启动了一个线程。
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.____③____;
        }
}

  • 1、
【正确答案】 1、

①run()
②Lefthand()
③start()

    
【答案解析】