class A extends Thread
{
public void run() //throws InterruptedException 这里不能进行声明可能有异常,因为父类方法中并没有这样声明,所以无法覆盖
{
int[] add = new int[50];
for(int i=0; i<add.length; i++)
{
add[i] = i;
try
{
sleep(100);
}
catch(InterruptedException e)
{
throw new RuntimeException(e); //这里可以不进行任何操作
}
}
for(int i=add.length-1; i>=0; i-- )
{
System.out.print(" "+ currentThread().getName() + add[i]);
try
{
sleep(100);
}
catch(InterruptedException e)
{
throw new RuntimeException(e); //这里可以不进行任何操作
}
}
}
}
public class TestThread_2
{
public static void main(String[] args)
{
A aa1 = new A();
A aa2 = new A();
aa1.start();
aa2.start();
}
}
上面代码是我看书时,自己想出来的代码!我的问题是上面代码中 静态方法sleep()在中断时会发生异常,在catch代码块中,为什么抛出的是RuntimeException,抛出Exception都不行,或者在catch中不写任何代码
|
|