java异常中一个有趣的例子

public 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[] args) {
		foo(0);
		System.out.println(output);
		foo(1);
		System.out.println(output);
	}
}
问输出结果是什么?

java异常中一个有趣的例子,布布扣,bubuko.com

java异常中一个有趣的例子

上一篇:head first设计模式之单例模式 c++解读


下一篇:C++反汇编->加法分析