下列程序的功能是在监控台上每隔一秒钟显示一个字符串"Hello",能够填写在程序中横线位置,使程序完整并能正确运行的语句是(  )。 public class Test implements Runnable { public stati

admin2010-12-17  26

问题 下列程序的功能是在监控台上每隔一秒钟显示一个字符串"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. out. println (" Hello" );               }       }    }

选项 A、sleep(1000);                                  InterruptedException
B、t. sleep(1000);    InterruptedException
C、Thread. sleep(1000);                          RuntimeException
D、Thread. sleep(1000);      InterruptedException

答案D

解析 当清除线程调用因暂停类方法而产生的中断状态时,会发送InterruptedException类异常。
转载请注明原文地址:https://jikaoti.com/ti/9FH0FFFM
0

最新回复(0)