📜  Java中的可抛出 toString() 方法及示例

📅  最后修改于: 2022-05-13 01:54:59.776000             🧑  作者: Mango

Java中的可抛出 toString() 方法及示例

Java.lang.Throwable 类toString()方法用于返回这个 Throwable 的字符串表示,它由这个对象的类名、一个冒号和一个空格(“:”)以及一个与调用此对象的 getLocalizedMessage() 方法的结果,如果 getLocalizedMessage 返回 null,则只返回类名。

句法:

public String toString()

返回值:如果发生异常,此方法将返回此 Throwable 的字符串表示形式

下面的程序说明了 Throwable 类的 toString() 方法:

示例 1:

// Java program to demonstrate
// the toString() Method.
  
import java.io.*;
  
class GFG {
  
    // Main Method
    public static void main(String[] args)
        throws Exception
    {
  
        try {
  
            testException();
        }
  
        catch (Throwable e) {
  
            // print using tostring()
            System.out.println("Exception: "
                               + e.toString());
        }
    }
  
    // method which throws Exception
    public static void testException()
        throws Exception
    {
  
        throw new Exception("New Exception Thrown");
    }
}
输出:
Exception: java.lang.Exception: New Exception Thrown

示例 2:

// Java program to demonstrate
// the toString() Method.
  
import java.io.*;
  
class GFG {
  
    // Main Method
    public static void main(String[] args)
        throws Exception
    {
        try {
  
            // divide two numbers
            int a = 4, b = 0;
  
            int c = a / b;
        }
        catch (Throwable e) {
  
            // print using tostring()
            System.out.println("Exception: "
                               + e.toString());
        }
    }
}
输出:
Exception: java.lang.ArithmeticException: / by zero

参考:
https://docs.oracle.com/javase/10/docs/api/java Java()