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


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


構造函數類的getTypeParameters()方法用於按聲明順序獲取此構造函數對象聲明的TypeVariable對象的數組。數組的元素表示由Method聲明的類型變量對象。如果Method Object泛型聲明不包含類型變量,則此getTypeParameters()返回長度為0的數組。

用法:

public TypeVariable<Constructor<T>>[] getTypeParameters()

參數:此方法不接受任何參數。


返回值:此方法返回TypeVariable對象的數組,這些對象表示此泛型聲明所聲明的類型變量。

異常:如果此通用聲明的通用簽名不符合Java™虛擬機規範中指定的格式,則此方法將引發GenericSignatureFormatError。

以下示例程序旨在說明getTypeParameters()方法:

程序1:

// Java program to demonstrate 
// Constructor.getTypeParameters() method 
  
import java.lang.reflect.Constructor; 
import java.lang.reflect.TypeVariable; 
  
public class GFG { 
  
    public static void main(String... args) 
        throws NoSuchMethodException 
    { 
  
        // Create Test class 
        Class<Test> cls = Test.class; 
  
        // Create Constructor Object 
        Constructor[] constructors 
            = cls.getConstructors(); 
  
        // get Annotation array 
        TypeVariable[] typeVariables 
            = constructors[0].getTypeParameters(); 
  
        System.out.println("TypeVariables:"
                           + typeVariables); 
    } 
} 
class Test<N extends Number> { 
    public Test(N n) {} 
}

輸出:

TypeVariables:[Ljava.lang.reflect.TypeVariable;@15db9742

程序2:

// Java program to demonstrate 
// Constructor.getTypeParameters() method 
  
import java.lang.reflect.TypeVariable; 
  
public class GFG { 
  
    public static void main(String... args) 
    { 
  
        // get Type Parameters 
        TypeVariable<Class<GFG_Demo> >[] typeParameters 
            = GFG_Demo.class.getTypeParameters(); 
  
        // print result 
        for (TypeVariable<Class<GFG_Demo> > 
                 typeParameter:typeParameters) { 
            System.out.println(typeParameter); 
        } 
    } 
  
    private static class GFG_Demo<N, E> { 
    } 
}

輸出:

N
E

參考資料:https://docs.oracle.com/javase/10/docs/api/java/lang/reflect/Constructor.html#getTypeParameters()



相關用法


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