java 基础练习题
Posted 一脚一个坑
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了java 基础练习题相关的知识,希望对你有一定的参考价值。
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 基础练习题的主要内容,如果未能解决你的问题,请参考以下文章