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


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