繁体   English   中英

如何在Java中使用@inherited注释?

[英]How to use @inherited annotation in Java?

我没有在Java中获得@Inherited注释。 如果它自动为你继承了这些方法,那么如果我需要以自己的方式实现该方法那么那么呢?

如何了解我的实施方式?

另外,如果我不想使用它并且以旧式Java方式执行它,我必须实现Object类的equals()toString()hashCode()方法以及注释。 java.lang.annotation.Annotation类的type方法。

这是为什么?

即使我不知道@Inherited注释和过去工作正常的程序,我也从未实现过。

请有人从头开始解释我这件事。

只是没有误解:你确实问过java.lang.annotation.Inherited 这是注释的注释。这意味着注释类的子类被认为与它们的超类具有相同的注释。

考虑以下2个注释:

@Inherited
@Target(ElementType.TYPE)
@Retention(RetentionPolicy.RUNTIME)
public @interface InheritedAnnotationType {

}

@Target(ElementType.TYPE)
@Retention(RetentionPolicy.RUNTIME)
public @interface UninheritedAnnotationType {

}

如果三个类注释如下:

@UninheritedAnnotationType
class A {

}

@InheritedAnnotationType
class B extends A {

}

class C extends B {

}

运行此代码

System.out.println(new A().getClass().getAnnotation(InheritedAnnotationType.class));
System.out.println(new B().getClass().getAnnotation(InheritedAnnotationType.class));
System.out.println(new C().getClass().getAnnotation(InheritedAnnotationType.class));
System.out.println("_________________________________");
System.out.println(new A().getClass().getAnnotation(UninheritedAnnotationType.class));
System.out.println(new B().getClass().getAnnotation(UninheritedAnnotationType.class));
System.out.println(new C().getClass().getAnnotation(UninheritedAnnotationType.class));

将打印与此类似的结果(取决于注释的包):

null
@InheritedAnnotationType()
@InheritedAnnotationType()
_________________________________
@UninheritedAnnotationType()
null
null

如您所见, UninheritedAnnotationType不是继承的,但CB继承注释InheritedAnnotationType

我不知道有什么方法与此有关。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM