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


Java Class asSubclass()用法及代码示例


Class类asSubclass()方法

  • asSubclass() 方法可在java.lang包。
  • asSubclass() 方法强制转换此 Class 对象以表示由给定 Class 对象表示的类的子类。
  • asSubclass() 方法是一个非静态方法,它只能通过类对象访问,如果我们尝试使用类名访问方法,那么我们将得到一个错误。
  • asSubclass() 方法可能会在投射类时抛出 ClassCastException。
    ClassCastException:在此异常中,当此类不表示给定类的子类时。

用法:

    public Class asSubclass(Class class_name);

参数:

  • Class class_name– 表示类的名称。

返回值:

这个方法的返回类型是Class,它返回这个 Class 对象,转换为表示给定 Class 对象的子类。

例:

// Java program to demonstrate the example 
// of Class asSubclass (Class class_name) method of Class class

public class ParentClass {
    public static void main(String[] args) throws Exception {
        // Creating ParentClass and ChildClass instance
        ParentClass pc = new ParentClass();
        ParentClass cc = new ChildClass();

        // Get Classname
        Class parent = pc.getClass();
        System.out.println("Parent Class:" + parent);

        Class child = cc.getClass();
        System.out.println("Child Class:" + child);

        // We are denoting ChildClass of the given ParentClass object
        Class subclass = child.asSubclass(parent);
        System.out.println("child.asSubclass(parent):" + subclass);
    }
}

class ChildClass extends ParentClass {

}

输出

Parent Class:class ParentClass
Child Class:class ChildClass
child.asSubclass(parent):class ChildClass


相关用法


注:本文由纯净天空筛选整理自Preeti Jain大神的英文原创作品 Java Class class asSubclass() method with example。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。