Java Throwable toString() 方法



描述

Java Throwable toString() 方法返回此可抛出对象的简短描述。结果是以下内容的串联:

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

如果 getLocalizedMessage 返回 null,则只返回类名。

声明

以下是 java.lang.Throwable.toString() 方法的声明

public String toString()

参数

返回值

此方法返回此可抛出对象的字符串表示形式。

异常

示例:可抛出对象的字符串表示形式

以下示例演示了 Java Throwable toString() 方法的用法。我们定义了一个 raiseException() 方法,该方法在被调用时抛出 Throwable。在主方法中,调用 raiseException() 方法,并在 catch 块中使用 toString() 方法打印异常字符串表示形式。

package com.tutorialspoint;

public class ThrowableDemo {

   public static void main(String[] args) {

      try {
         raiseException();
      } catch(Throwable e) {
         // print string representation of throwable	  
         System.err.println(e.toString());
      }
   }
  
   // throws Throwable  
   public static void raiseException() throws Throwable {
      throw new Throwable("This is the new Exception"); 
   }
} 

输出

让我们编译并运行上述程序,这将产生以下结果:

java.lang.Throwable: This is the new Exception

示例:异常的字符串表示形式

以下示例演示了 Java Throwable toString() 方法的用法。我们定义了一个 raiseException() 方法,该方法在被调用时抛出 Exception。在主方法中,调用 raiseException() 方法,并在 catch 块中使用 toString() 方法打印异常字符串表示形式。

package com.tutorialspoint;

public class ThrowableDemo {

   public static void main(String[] args) {

      try {
         raiseException();
      } catch(Throwable e) {
         // print string representation of throwable
         System.err.println(e.toString());
      }
   }

   // throws Exception    
   public static void raiseException() throws Exception {
      throw new Exception("This is the new Exception"); 
   }
} 

输出

让我们编译并运行上述程序,这将产生以下结果:

java.lang.Exception: This is the new Exception

示例:RuntimeException 的字符串表示形式

以下示例演示了 Java Throwable toString() 方法的用法。我们定义了一个 raiseException() 方法,该方法在被调用时抛出 RuntimeException。在主方法中,调用 raiseException() 方法,并在 catch 块中使用 toString() 方法打印异常字符串表示形式。

package com.tutorialspoint;

public class ThrowableDemo {

   public static void main(String[] args) {

      try {
         raiseException();
      } catch(Throwable e) {
         // print string representation of throwable
         System.err.println(e.toString());
      }
   }

   // throws RuntimeException    
   public static void raiseException() throws Exception {
      throw new RuntimeException("This is the new Exception"); 
   }
} 

输出

让我们编译并运行上述程序,这将产生以下结果:

java.lang.RuntimeException: This is the new Exception
java_lang_throwable.htm
广告