单项选择(2005年4月二级考试)

下列程序的功能是在监控台上每隔一秒钟显示一个字符串“Hello”,能够填写在程序中下划线位置,使程序完整并能正确运行的语句是【 】

public class Test implements Runnable{
   public static void main(String args[]){
      Test t=new Test();
      Thread tt=new Thread(t);
      tt.start();
   }
   public void run(){
      for(;;){
         try{}catch(e){}
         System.put.println("Hello");
      }
   }
}

A、sleep(1) RuntimeException

B、sleep(1000) InterruptedException

C、Thread.sleep(1) InterruptedException

D、Thread.sleep(1000) InterruptedException

答案解析

D题目首先通过实现Runnable接口创建线程,Test t=new Test()语句定义了Test的 1个实例,Thread tt=new Thread(t)定义了1个名为tt的线程,tt.start()语句启动线程。通过try-catch语句来处理异常,try代码包括一些简单语句或方法调用,遇到异常情况时,停止执行而转跳到相应处理异常的程序,...

查看完整答案

讨论