繁荣鞋子

文章
5
资源
0
加入时间
3年0月21天

Exception toString getMessage 区别

Exception 的 toString() 方法和 getMessage() 方法的区别: 在开发的过程中打印错误日志时尽量使用e.toString() 方法, 因为当错误为空指针时 e.getMessage() 提示的错误信息为 null , e.toString() 方法比 e.getMessage() 方法要详细,实例如下:public class TestException { public static String str = null; ...