零基础学Java(全彩版)书中第195页有错
发表在Java图书答疑
2019-05-31
《零基础学Java》第8章 异常处理
是否精华
是
否
版块置顶:
是
否
老师您好 零基础学Java(全彩版)书中有错误 请看:
第195页拓展训练上面有一个勾
说:程序所在的线程死亡。 <--这句话有错
我做过实验了 finally还是会被执行
代码如下:
package 线程;
import java.lang.Thread;
public class A {
public static void main(String[] args) {
// TODO Auto-generated method stub
try{
for(int i=0;i<3;i++) {
new Thread(new B()).start();
}
}catch(Exception e) {
System.out.println("程序出错啦");
}finally {
System.out.println("李伟科");
}
}
}
class B implements Runnable{
private boolean a=true;
private int sum=0;
public void run() {
try{
while(a) {
sum++;
System.out.println("线程被启动了");
if(sum==5) {
a=false;
}
}
}catch(Exception e) {
System.out.println("出错了");
}finally {
System.out.println("finally");
}
}
}
首页上一页 1 下一页尾页 2 条记录 1/1页