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


Java java.lang.reflect.Method.getExceptionTypes()用法及代码示例



描述

这个java.lang.reflect.Method.getExceptionTypes()方法返回一个 Class 对象数组,这些对象表示声明为由此 Method 对象表示的底层方法抛出的异常类型。如果该方法在其 throws 子句中声明没有异常,则返回长度为 0 的数组。

声明

以下是声明java.lang.reflect.Method.getExceptionTypes()方法。

public Class<?>[] getExceptionTypes()

返回

声明为由该对象表示的方法抛出的异常类型。

示例

下面的例子展示了 java.lang.reflect.Method.getExceptionTypes() 方法的用法。

package com.tutorialspoint;

import java.lang.reflect.Method;

public class MethodDemo {

   public static void main(String[] args) {

      Method[] methods = SampleClass.class.getMethods();
      Class[] exceptions = methods[0].getExceptionTypes();
      for (int i = 0; i < exceptions.length; i++) {
         System.out.println(exceptions[i]);
      }
   }
}

class SampleClass {
   private String sampleField;

   public String getSampleField() throws ArrayIndexOutOfBoundsException{
      return sampleField;
   }

   public void setSampleField(String sampleField) {
      this.sampleField = sampleField; 
   } 
}

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

class java.lang.ArrayIndexOutOfBoundsException

相关用法


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