在我的下面的代码段中,printStackTrace()
方法会调用catch block
方法。运行该程序后,您可以看到有时printStackTrace()
连续多次运行,而不是按printStackTrace()
- >的顺序运行catch block
- > finally block
。
如果您将static boolean b
更改为false
,则System.out.print(e)
会按顺序执行。
那么printStackTrace()
为什么会以不同的方式表现呢? (带线程的东西??)
public class PrintStackTrace {
static boolean b = true;
public static void main(String[] args){
for(int i = 0; i < 100; i++){
try{
throw new Exception("[" + i + "]");
}
catch(Exception e){
if(b){
e.printStackTrace();
}
else{
System.out.print(e);
}
System.out.print(" Catch: " + i);
}
finally{
System.out.print(" Finally: " + i);
}
System.out.println();
}
}
}
答案 0 :(得分:12)
这是因为printStackTrace
在System.err
中写入而System.out.println
在System.out
上写入。即使System.err
和System.out
使用相同的底层资源作为输出消息(例如同一个文件或同一个控制台),它们也会在不同时刻刷新。
如果您想要同步输出,请在System.out
中编写例外:
e.printStackTrace(System.out);
或者更好的是,使用记录器,它已经将输出同步到共享资源中,并为您提供有关在消息中输出内容的更多选项,例如:类,方法,日期和时间,线程名称等,以及在数据库而不是文本文件中写日志消息等其他好处,以及。