我知道有很多关于try-catch-finally块的问题已在本网站上提出。但我有一个不同的疑问。当下面的代码多次运行时,我得到不同的输出。
我有一个非常简单的课程如下:
Practice.java
public class Practice {
public static void main(String []args) {
System.out.println(getInteger());
}
public static int getInteger() {
try {
System.out.println("Try");
throwException();
return 1;
} catch(Exception e) {
System.out.println("Catch Exception");
e.printStackTrace();
return 2;
} finally {
System.out.println("Finally");
}
}
private static void throwException() throws Exception {
throw new Exception("my exception");
}
}
首次运行上述代码时的输出如下:
Try
Catch Exception
Finally
2
java.lang.Exception: my exception
at exceptionHandling.Practice.throwException(Practice.java:22)
at exceptionHandling.Practice.getInteger(Practice.java:10)
at exceptionHandling.Practice.main(Practice.java:4)
我再次运行代码时的不同输出如下:
Try
Catch Exception
java.lang.Exception: my exception
at exceptionHandling.Practice.throwException(Practice.java:22)
at exceptionHandling.Practice.getInteger(Practice.java:10)
at exceptionHandling.Practice.main(Practice.java:4)
Finally
2
有人可以解释这样的输出吗?
答案 0 :(得分:5)
您使用不同的文件句柄。您的输出转到System.out
,e.printStackTrace();
写入System.err
,这将在不同时间刷新。