当前位置: 首页 > 知识库问答 >
问题:

Class.get的子类返回空数组

年文柏
2023-03-14

我有一个注释定义如下:

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

}

我是这样使用它的:

@Retriable
interface MyInterface {
    public void myMethod();
}

现在,我有了第二个接口,它扩展了第一个:

interface MySecondInterface extends MyInterface {

}

我想获得MySecondInterface的所有注释,这意味着我也想获得超级接口上定义的注释。

我所尝试的:

#########################################################################################

Retriable annotation = clazz.getAnnotation(Retriable.class);
System.out.println("Retriable annotation: " + annotation);

Annotation[] annotations = clazz.getAnnotations();
System.out.println("Annotations: " + Arrays.toString(annotations));

annotations = clazz.getDeclaredAnnotations();
System.out.println("Declared Annotations: " + Arrays.toString(annotations));

结果是:

Retriable annotation: null
Annotations: []
Declared Annotations: []

在所有情况下,它都找不到从MyInterface继承的retreable注释。(演示)

有没有办法让它识别超级接口的注释?

共有1个答案

颜经艺
2023-03-14

java.lang.annotation.继承的javadocs:

    Note that this meta-annotation type has no effect if the annotated type is used to annotate 
    anything other than a class. Note also that this meta-annotation only causes annotations to be 
    inherited from superclasses; annotations on implemented interfaces have no effect.

所以将接口更改为类。这会影响

@Retriable
class MyClass {
    public void myMethod(){

    }
}

class MySecondClass extends MyClass {

}
 类似资料:
  • 我试图在JPanel上显示图片,但一直出现错误: Java语言lang.IllegalArgumentException:input==null! 我不明白发生了什么。 这是我正在使用的代码: 这只会导致我得到错误! 堆栈跟踪产生以下结果: 我如何解决这个问题?我已经检查了图像的位置,并且从不同的位置尝试,总是得到相同的错误! 我正在使用Netbean IDE。

  • 在我的代码中,list数组的console.log给了我想要的东西,它是输入的一组子集。但它不会传递给结果。结果返回如下所示:[[],[],[],[],[],[],[],[],[],[],[],[],[]] 下面是我的代码: 任何想法都会很棒!谢谢你!

  • 问题内容: 我有两个模型,用户模型和时间表,我想用$ lookup 和猫鼬把这两个模型结合起来。 用户(型号) 时间表(型号) 现在我的查询使用猫鼬: 用户汇总 我的查询结果是一个空的array(),如下所示: 查询结果: 我不知道为什么,但是查询结果是一个 空数组 ,我试图使用$ unwind和$ match,但也无法正常工作。 编辑: 用户集合 时间表的收集 问题答案: 猫鼬在创建时将集合名称

  • 问题内容: PHP 7引入了返回类型声明。这意味着我现在可以指示返回值是某个类,接口,数组,可调用或新暗示的标量类型之一,对于函数参数而言,这是可能的。 通常,值并不总是存在,并且您可能返回某种类型的值或null。尽管可以通过将参数的默认值设置为null()来使参数为可空,但似乎没有办法对返回类型执行此操作。的确是这样,还是我不知如何找到方法呢?这些不起作用: 问题答案: PHP 7.1现在支持可

  • 因此,我得到了一个字符串,它是我在一个类上实现的toJson方法的结果,并且在我的测试代码中确认它是我的类的正确Json表示。我的目标是使用Gson将此字符串转换为JsonObject并将其传递给构造函数。然而,我遇到了一个奇怪的问题。 这是我要调用的代码: 我以前在我的项目中的许多地方,在其他类中,都使用过完全相同的代码片段,而且效果很好。我甚至将其中一段功能代码复制到这个测试类中,并进行了尝试

  • 在python 3.x中,通常使用函数的返回类型注释,例如: “void”类型的正确注释是什么? 我正在考虑三种选择: