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


Java Class getGenericSuperclass()用法及代碼示例


java.lang.Class類的getGenericSuperclass()方法用於獲取此實體的超類的類型。該實體可以是類,數組,接口等。該方法返回此實體的超類的類型。

用法:

public Type getGenericSuperclass()

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


返回值:此方法返回此實體的超類的類型。

異常:此方法引發以下異常:

  • GenericSignatureFormatError:如果通用類簽名不符合《 Java™虛擬機規範》中指定的格式
  • TypeNotPresentException:如果泛型超類引用了不存在的類型聲明
  • MalformedParameterizedTypeException:如果泛型超類引用由於某種原因而無法實例化的參數化類型

下麵的程序演示了getGenericSuperclass()方法。

示例1:

// Java program to demonstrate 
// getGenericSuperclass() method 
  
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 super class of myClass 
        // using getGenericSuperclass() method 
        System.out.println( 
            "Type of the superclass of myClass: "
            + myClass.getGenericSuperclass()); 
    } 
}
輸出:
Class represented by myClass: class Test
Type of the superclass of myClass: class java.lang.Object

示例2:

// Java program to demonstrate 
// getGenericSuperclass() method 
  
public class Test { 
  
    class Arr { 
    } 
  
    public static void main(String[] args) 
        throws ClassNotFoundException 
    { 
        // returns the Class object for Arr 
        Class arrClass = Arr.class; 
  
        // Get the super class of arrClass 
        // using getGenericSuperclass() method 
        System.out.println( 
            "Type of the superclass of arrClass: "
            + arrClass.getGenericSuperclass()); 
    } 
}
輸出:
Type of the superclass of arrClass: class java.lang.Object

參考: https://docs.oracle.com/javase/9/docs/api/java/lang/Class.html#getGenericSuperclass–



相關用法


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