Class<?>[] getExceptionTypes()

优质
小牛编辑
124浏览
2023-12-01

描述 (Description)

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

声明 (Declaration)

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

public Class<?>[] getExceptionTypes()

返回值 (Returns)

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

例子 (Example)

以下示例显示了java.lang.reflect.Method.getExceptionTypes()方法的用法。

package cn.xnip;
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