当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Java Throwable toString()用法及代码示例


Java.lang.Throwable类的toString()方法,用于返回此Throwable的String表示形式,该表示形式由该对象的类的名称,冒号和空格(“:”)组成,并且字符串与调用此对象的getLocalizedMessage()方法,如果getLocalizedMessage返回null,则仅返回类名称。

用法:

public String toString()

返回值:如果发生异常,则此方法返回此Throwable的String表示形式。


以下示例程序旨在说明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/lang/Throwable.html#toString()



相关用法


注:本文由纯净天空筛选整理自AmanSingh2210大神的英文原创作品 Throwable toString() method in Java with Examples。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。