java中@Inherited是什么?

说明

1、标记表明某个标记的类型被继承,@inherited修饰的annotation类型被用于class,annotation被用于class的子类,@inheritedannotation类型被标记的class的子类。

作用

2、允许子类继承父类注释。

实例

MyParentClass在用的注释标记是@Inherited,子类可以继承注释信息。

java.lang.annotation.Inherited
@Inherited
public@interfaceMyCustomAnnotation{
}

@MyCustomAnnotation
publicclassMyParentClass{
...
}

publicclassMyChildClassextendsMyParentClass{
...
}

以上就是java中@Inherited的介绍,希望对大家有所帮助。更多Java学习指路:Java基础

原文来自:https://www.py.cn
© 版权声明
THE END
喜欢就支持一下吧
点赞10 分享
评论 抢沙发
头像
欢迎您留下宝贵的见解!
提交
头像

昵称

取消
昵称表情代码图片

    暂无评论内容