assubclass_Java类class asSubclass()方法及示例

assubclass

类类asSubclass()方法 (Class class asSubclass() method)

  • asSubclass() method is available in java.lang package.

    asSubclass()方法在java.lang包中可用。

  • asSubclass() method casts this Class object to denote a subclass of the class denoted by the given Class object.

    asSubclass()方法强制转换此Class对象,以表示由给定Class对象表示的类的子类。

  • asSubclass() method is a non-static method, it is accessible with the class object only and if we try to access the method with the class name then we will get an error.

    asSubclass()方法是一个非静态方法,只能由类对象访问,如果尝试使用类名访问该方法,则会收到错误消息。

  • asSubclass() method may throw ClassCastException at the time of casting a Class.

    asSubclass()方法可能会在强制转换Class时引发ClassCastException。

    ClassCastException: In this exception when this Class does not denote a subclass of the given class.

    ClassCastException:在此异常中,当此Class类不表示给定类的子类时。

Syntax:

句法:

    public Class asSubclass(Class class_name);

Parameter(s):

参数:

  • Class class_name – represents the name of the class.

    类class_name –表示类的名称。

Return value:

返回值:

The return type of this method is Class, it returns this Class object, cast to denote a subclass of the given Class object.

此方法的返回类型为Class ,它返回此Class对象,强制转换为表示给定Class对象的子类。

Example:

例:

// 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 {

}

Output

输出量

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


翻译自: https://www.includehelp.com/java/class-class-assubclass-method-with-example.aspx

assubclass

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值