我搜索了可以回答我的问题的例子,但找不到任何有用或完整的问题。
答案 0 :(得分:1)
不,你没有。
以下几行为您提供了Class
的所有注释信息。同样,您可以将其用于Method
和Field
个对象
Annotation[] annotations = someObject.getClass().getAnnotations();
YourAnnotation annotation =
someObject.getClass().getAnnotation(YourAnnotation.class);
boolean annotationPresent =
someObject.getClass().isAnnotationPresent(YourAnnotation.class);