Java Throwable toString()方法

java.lang.Throwable.toString() 方法返回这个throwable的简单描述。其结果是级联:

  • 此对象的类的名称
  • ": " (一个冒号和一个空格)
  • 调用此对象的getLocalizedMessage()方法的结果。

如果getLocalizedMessage返回null,那么就返回类名。

1 语法

public String toString()

2 参数

3 返回值

此方法返回这个抛出的字符串表示形式。

4 示例 

package com.yiidian;

/**
 * 一点教程网: http://www.yiidian.com
 */
/**
 * Java Throwable toString()方法
 */
public class ThrowableDemo {

   public static void main(String[] args) {

     try {
        Exception2();
     }
     catch(Throwable e) {
        System.err.println(e.toString());
     }
   }
  
   public static void Exception2()throws Throwable {
      throw new Throwable("This is the new Exception"); 
   }
}

输出结果为:

java.lang.Throwable: This is the new Exception

 

热门文章

优秀文章