Java Method getGenericExceptionTypes()方法
java.lang.reflect.Method.getGenericExceptionTypes()方法返回一个Type对象数组,表示此Method对象声明抛出的异常。 如果底层方法在其throws子句中不声明异常,则返回长度为0的数组。
1 语法
public Type[] getGenericExceptionTypes()
2 参数
无
3 返回值
一组类型,表示底层方法抛出的异常类型。
4 示例
package com.yiidian;
/**
* 一点教程网: http://www.yiidian.com
*/
/**
* Java Method getGenericExceptionTypes()方法
*/
import java.lang.reflect.Method;
import java.lang.reflect.Type;
public class MethodDemo {
public static void main(String[] args) {
Method[] methods = SampleClass.class.getMethods();
Type[] exceptions = methods[0].getGenericExceptionTypes();
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
热门文章
优秀文章