当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。