码迷,mamicode.com
首页 > 编程语言 > 详细

java 基础练习题

时间:2018-07-04 21:33:51      阅读:148      评论:0      收藏:0      [点我收藏+]

标签:output   row   foo   void   java   public   练习   string   ==   

10.输出内容是什么?

class Test{

public static String output ="";
public static void foo(int i){
try{
if(i == 1)
throw new Exception();
output+="1";
}
catch(Exception e){
output += "2";
return;
}
finally{
output+="3";
}
output+="4";

}

public static void main (String[] arg){
foo(0);
System.out.println(output);
foo(1);
System.out.println(output);

}
}

答案:134,13423

java 基础练习题

标签:output   row   foo   void   java   public   练习   string   ==   

原文地址:https://www.cnblogs.com/chzlh/p/9265335.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!