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


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



描述

这个java.lang.Throwable.toString() 方法返回此 throwable 的简短描述。结果是 � 的串联

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

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

声明

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

public String toString()

参数

NA

返回值

此方法返回此 throwable 的字符串表示形式。

异常

NA

示例

下面的例子展示了 java.lang.Throwable.toString() 方法的用法。

package com.tutorialspoint;

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

相关用法


注:本文由纯净天空筛选整理自 Java.lang.Throwable.toString() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。