java.lang.Class类的getTypeParameters()方法用于获取此实体的类型参数。该实体可以是类,数组,接口等。该方法返回表示类型变量的TypeVariable对象的数组。
用法:
public TypeVariable<Class<T>> getTypeParameters()
参数:此方法不接受任何参数。
返回值:此方法返回表示类型变量的TypeVariable对象数组。
下面的程序演示了getTypeParameters()方法。
示例1:
// Java program to demonstrate getTypeParameters() method
import java.util.*;
public class Test {
public static void main(String[] args)
throws ClassNotFoundException
{
// returns the Class object for this class
Class myClass = Class.forName("Test");
System.out.println("Class represented by myClass: "
+ myClass.toString());
// Get the type parameters of myClass
// using getTypeParameters() method
System.out.println(
"TypeParameters of myClass: "
+ Arrays.toString(
myClass.getTypeParameters()));
}
}
输出:
Class represented by myClass: class Test TypeParameters of myClass: []
注:本文由纯净天空筛选整理自 Class getTypeParameters() method in Java with Examples。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。