Loading

摘要: 全局异常处理介绍 说到异常是项目开发中最熟悉不过的了,为了处理异常,我们往往会写很多类似于下面这样的代码: public void hello() { try { // 业务代码 }catch (Exception e) { e.printStackTrace(); } } 这样写出的代码包含了很多 阅读全文
posted @ 2020-06-07 17:34 PinGoo 阅读(1049) 评论(0) 推荐(0) 编辑