1 public class Person<T> { 2 3 } 4 5 import java.lang.reflect.ParameterizedType; 6 import java.lang.reflect.Type; 7 8 public class Student extends Person<Student> { 9 public static void main(String[] args) { 10 Student st=new Student(); 11 Class clazz=st.getClass(); 12 //getSuperclass()得到該類的父類 13 System.out.println(clazz.getSuperclass()); 14 //getGenericSuperclass()得到帶有泛型的父類 15 //Type是 Java 編程語言中全部類型的公共高級接口。它們包括原始類型、參數化類型、數組類型、類型變量和基本類型。 16 Type type=clazz.getGenericSuperclass(); 17 System.out.println(type); 18 //ParameterizedType參數化類型,即泛型 19 ParameterizedType p=(ParameterizedType)type; 20 //getActualTypeArguments獲取參數化類型的數組,泛型可能有多個 21 Class c=(Class) p.getActualTypeArguments()[0]; 22 System.out.println(c); 23 } 24 } 25 26 打印結果: 27 28 class com.test.Person 29 com.test.Person<com.test.Student> 30 class com.test.Student