java.lang.reflect.Constructor類的getGenericExceptionTypes()方法用於以數組形式返回此構造方法對象上存在的異常類型。返回的對象數組表示聲明為此構造方法對象引發的異常。如果此構造函數在throws子句中未聲明任何異常,則此方法返回長度為0的數組。
用法:
public Type[] getGenericExceptionTypes()
參數:此方法不接受任何內容。
返回:此方法返回一個Types數組,這些數組表示基礎可執行文件引發的異常類型。
異常:此方法引發以下異常:
- GenericSignatureFormatError:如果通用方法簽名不符合Java™虛擬機規範中指定的格式。
- TypeNotPresentException:如果基礎可執行文件的throws子句引用了不存在的類型聲明。
- MalformedParameterizedTypeException:如果基礎可執行文件的throws子句引用了由於某種原因而無法實例化的參數化類型。
以下示例程序旨在說明getGenericExceptionTypes()方法:
示例1:
// Java program to illustrate
// getGenericExceptionTypes() method
import java.io.IOException;
import java.lang.reflect.*;
public class GFG {
public static void main(String[] args)
{
// create a class object
Class classObj = shape.class;
// get Constructor object
// array from class object
Constructor[] cons
= classObj.getConstructors();
// get array of GenericExceptionTypes
Type[] exceptions
= cons[0].getGenericExceptionTypes();
// print length of GenericExceptionTypes array
System.out.println("GenericExceptions : ");
for (int i = 0; i < exceptions.length; i++)
System.out.println(exceptions[i]);
}
// demo class
public class shape {
public shape() throws IOException,
ArithmeticException,
ClassCastException
{
}
}
}
輸出:
GenericExceptions : class java.io.IOException class java.lang.ArithmeticException class java.lang.ClassCastException
示例2:
// Java program to illustrate
// getGenericExceptionTypes() method
import java.lang.reflect.Constructor;
import java.lang.reflect.Type;
public class GFG {
public static void main(String[] args)
{
// create a class object
Class classObj = String.class;
// get Constructor object
// array from class object
Constructor[] cons
= classObj.getConstructors();
// get array of GenericExceptionTypes
Type[] exceptions
= cons[0].getGenericExceptionTypes();
// print length of GenericExceptionTypes array
System.out.println(
"No of Generic Exception thrown : "
+ exceptions.length);
}
}
輸出:
No of Generic Exception thrown : 0
相關用法
- Java Constructor getParameterAnnotations()用法及代碼示例
- Java Constructor isVarArgs()用法及代碼示例
- Java Constructor getDeclaringClass()用法及代碼示例
- Java Constructor isSynthetic()用法及代碼示例
- Java Constructor hashCode()用法及代碼示例
- Java Constructor getName()用法及代碼示例
- Java Constructor toGenericString()用法及代碼示例
- Java Constructor getTypeParameters()用法及代碼示例
- Java Constructor toString()用法及代碼示例
- Java Constructor newInstance()用法及代碼示例
- Java Constructor getAnnotatedReturnType()用法及代碼示例
- Java Constructor getDeclaredAnnotations()用法及代碼示例
- Java Constructor getGenericParameterTypes()用法及代碼示例
- Java Constructor equals()用法及代碼示例
- Java Constructor getAnnotatedReceiverType()用法及代碼示例
注:本文由純淨天空篩選整理自AmanSingh2210大神的英文原創作品 Constructor getGenericExceptionTypes() method in Java with Examples。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。