Class的 getSuperclass與getGenericSuperclass區別

Class的getInterfaces與getGenericInterface區別 http://www.cnblogs.com/maokun/p/6773076.htmlhtml

1、getSuperclass   返回直接繼承的父類(因爲編譯擦除,沒有顯示泛型參數

 Class<? super T> getSuperclass()
          返回表示此 Class 所表示的實體(類、接口、基本類型或 void)的超類的 Class

返回表示此 Class 所表示的實體(類、接口、基本類型或 void)的超類的 Classjava

若是此 Class 表示 Object 類、一個接口、一個基本類型或 void,則返回 null數組

若是此對象表示一個數組類,則返回表示該 Object 類的 Class 對象。 spa

返回:
此對象所表示的類的超類。

 

2、getGenericSuperclass  返回直接繼承的父類(包含泛型參數

 Type getGenericSuperclass()
          返回表示此 Class 所表示的實體(類、接口、基本類型或 void)的直接超類的 Type

返回表示此 Class 所表示的實體(類、接口、基本類型或 void)的直接超類的 Typecode

若是超類是參數化類型,則返回的 Type 對象必須準確反映源代碼中所使用的實際類型參數。若是之前不曾建立表示超類的參數化類型,則建立這個類型。有關參數化類型建立過程的語義,請參閱 ParameterizedType 聲明。orm

若是此 Class 表示 Object 類、接口、基本類型或 void,則返回 nullhtm

若是此對象表示一個數組類,則返回表示 Object 類的 Class 對象。 對象

返回:
此對象所表示的類的超類
拋出:
GenericSignatureFormatError - 若是常規類簽名不符合 Java Virtual Machine Specification, 3rd edition 規定的格式
TypeNotPresentException - 若是常規超類引用不存在的類型聲明
MalformedParameterizedTypeException - 若是常規超類引用的參數化類型因爲某種緣由沒法實例化

代碼實例:blog

package cn.test;

public class Test {

    public static void main(String[] args) {
        System.out.println("Student.class.getSuperclass()\t" 
+ Student.class.getSuperclass()); System.out.println("Student.class.getGenericSuperclass()\t"
+ Student.class.getGenericSuperclass()); System.out.println("Test.class.getSuperclass()\t"
+ Test.class.getSuperclass()); System.out.println("Test.class.getGenericSuperclass()\t"
+ Test.class.getGenericSuperclass()); System.out.println("Object.class.getGenericSuperclass()\t"
+ Object.class.getGenericSuperclass()); System.out.println("Object.class.getSuperclass()\t"
+ Object.class.getSuperclass()); System.out.println("void.class.getSuperclass()\t"
+ void.class.getSuperclass()); System.out.println("void.class.getGenericSuperclass()\t"
+ void.class.getGenericSuperclass()); System.out.println("int[].class.getSuperclass()\t"
+ int[].class.getSuperclass()); System.out.println("int[].class.getGenericSuperclass()\t"
+ int[].class.getGenericSuperclass()); } } class Person<T> { } class Student extends Person<Test> { }

 

輸出結果:繼承

Student.class.getSuperclass()	class cn.test.Person
Student.class.getGenericSuperclass()	cn.test.Person<cn.test.Test>
Test.class.getSuperclass()	class java.lang.Object
Test.class.getGenericSuperclass()	class java.lang.Object
Object.class.getGenericSuperclass()	null
Object.class.getSuperclass()	null
void.class.getSuperclass()	null
void.class.getGenericSuperclass()	null
int[].class.getSuperclass()	class java.lang.Object
int[].class.getGenericSuperclass()	class java.lang.Object
相關文章
相關標籤/搜索