求高手帮忙分析下面这段java代码~~~~~~
publicclassTestEx{publicstaticinttest(intx){inti=1;try{System.out.println("try块中10/x之...
public class TestEx {
public static int test(int x){
int i=1;
try{
System.out.println("try块中10/x之前");
i=10/x;
System.out.println("try块中10/x之后");
return i;
}
catch(Exception e){
i=100;
System.out.println("catch块中。。。。。");
}
finally{
i=1000;
System.out.println("fianlly块");
}
return i;
}
public static void main (String[] args){
System.out.println(TestEx.test(1));
System.out.println(TestEx.test(0));
}
}
运行结果是:
try块中10/x之前
try块中10/x之后
fianlly块
10
try块中10/x之前
catch块中。。。。。
fianlly块
1000
问题:都执行了finally块,为什么test(1)返回的是10,而test(0)返回的是1000? 展开
public static int test(int x){
int i=1;
try{
System.out.println("try块中10/x之前");
i=10/x;
System.out.println("try块中10/x之后");
return i;
}
catch(Exception e){
i=100;
System.out.println("catch块中。。。。。");
}
finally{
i=1000;
System.out.println("fianlly块");
}
return i;
}
public static void main (String[] args){
System.out.println(TestEx.test(1));
System.out.println(TestEx.test(0));
}
}
运行结果是:
try块中10/x之前
try块中10/x之后
fianlly块
10
try块中10/x之前
catch块中。。。。。
fianlly块
1000
问题:都执行了finally块,为什么test(1)返回的是10,而test(0)返回的是1000? 展开
3个回答
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询