位置:首頁 > Java技術 > java.lang > java.lang.Throwable.toString()方法實例

java.lang.Throwable.toString()方法實例

java.lang.Throwable.toString() 方法返回這個throwable的簡單描述。其結果是級聯:

  • 此對象的類的名稱
  • ": " (一個冒號和一個空格)
  • 調用此對象的getLocalizedMessage()方法的結果。

如果getLocalizedMessage返回null,那麼就返回類名。

聲明

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

public String toString()

參數

  • NA

返回值

此方法返回這個拋出的字符串表示形式。

異常

  • NA

例子

下麵的例子顯示java.lang.Throwable.toString()方法的使用。

package com.yiibai;

import java.lang.*;

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