當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Java Constructor getGenericExceptionTypes()用法及代碼示例


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

參考文獻: https://docs.oracle.com/javase/10/docs/api/java/lang/reflect/Constructor.html#getGenericExceptionTypes()



相關用法


注:本文由純淨天空篩選整理自AmanSingh2210大神的英文原創作品 Constructor getGenericExceptionTypes() method in Java with Examples。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。