Tag: throwable

在try catch中使用Throwable和Exception之间的区别

有时我会看到 try { } catch(Throwable e) { } 有时 try { } catch(Exception e) { } 有什么不同

捕捉Throwable是不好的做法?

捕捉Throwable是不好的做法? 比如像这样的东西: try { // Some code } catch(Throwable e) { // handle the exception } 这是一个不好的做法,或者我们应该尽可能具体?