java元注解@Inherited的使用详解
1.先看源码文档
/** *Indicatesthatanannotationtypeisautomaticallyinherited.If *anInheritedmeta-annotationispresentonanannotationtype *declaration,andtheuserqueriestheannotationtypeonaclass *declaration,andtheclassdeclarationhasnoannotationforthistype, *thentheclass'ssuperclasswillautomaticallybequeriedforthe *annotationtype.Thisprocesswillberepeateduntilanannotationforthis *typeisfound,orthetopoftheclasshierarchy(Object) *isreached.Ifnosuperclasshasanannotationforthistype,then *thequerywillindicatethattheclassinquestionhasnosuchannotation. * *Notethatthismeta-annotationtypehasnoeffectiftheannotated *typeisusedtoannotateanythingotherthanaclass.Notealso *thatthismeta-annotationonlycausesannotationstobeinherited *fromsuperclasses;annotationsonimplementedinterfaceshaveno *effect. * *@authorJoshuaBloch *@since1.5 *@jls9.6.3.3@Inherited */ @Documented @Retention(RetentionPolicy.RUNTIME) @Target(ElementType.ANNOTATION_TYPE) public@interfaceInherited{ }
上述代码注释部分可以用谷歌翻译大法大致意思是
表示注释类型自动继承。如果在注释类型声明中存在继承的元注释,并且用户在类声明上查询注释类型,并且类声明没有此类型的注释,则该类的超类将自动查询注释类型。将重复此过程,直到找到此类型的注释,或者达到类层次结构(Object)的顶部。如果没有超类具有此类型的注释,则查询将指示所讨论的类没有这样的注释。
请注意,如果使用注释类型来注释除类之外的任何内容,则此元注释类型不起作用。还要注意,这个元注释只会导致从超类继承注释;已实现的接口上的注释无效。
通过上述描述可知,使用该注解的注解父类的子类可以继承父类的注解。
2.代码测试
2.1拥有@Inherited注解
@Target(ElementType.TYPE) @Retention(RetentionPolicy.RUNTIME) @Inherited public@interfaceInheritedTest{ Stringvalue(); }
@InheritedTest("拥有Inherited") publicclassPerson{ publicvoidmethod(){ } publicvoidmethod2(){ } }
publicclassStudentextendsPerson{ }
测试:
publicclassTestInherited{ publicstaticvoidmain(String[]args){ ClassstudentClass=Student.class; if(studentClass.isAnnotationPresent(InheritedTest.class)){ System.out.println(studentClass.getAnnotation(InheritedTest.class).value()); } } }
输出:
2.2未拥有@Inherited注解
@Target(ElementType.TYPE) @Retention(RetentionPolicy.RUNTIME) public@interfaceIsNotInherited{ Stringvalue(); }
@IsNotInherited("未拥有Inherited") publicclassPerson{ publicvoidmethod(){ } publicvoidmethod2(){ } }
publicclassStudentextendsPerson{ }
测试:
publicclassTestInherited{ publicstaticvoidmain(String[]args){ ClassstudentClass=Student.class; if(studentClass.isAnnotationPresent(IsNotInherited.class)){ System.out.println(studentClass.getAnnotation(IsNotInherited.class).value()); } } }
没有输出任何任容,由此可知未拥有@Inherited注解的注解的类的子类不会被继承该注解。
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持毛票票。
声明:本文内容来源于网络,版权归原作者所有,内容由互联网用户自发贡献自行上传,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任。如果您发现有涉嫌版权的内容,欢迎发送邮件至:czq8825#qq.com(发邮件时,请将#更换为@)进行举报,并提供相关证据,一经查实,本站将立刻删除涉嫌侵权内容。