摘要: 1.A catch statement should never catch throwable since it includes errors. 在catch里永远不要抛出throwable。 Explain:Catching Throwable errors is not recommended since its scope is very broad. It includes runtime issues such asOutOfMemoryError that should be exposed and managed separately.在catch里抛出Throwable里. 阅读全文
posted @ 2013-11-15 11:57 我是小菜鸟 阅读(2203) 评论(0) 推荐(0)