这个问题我今天搞明白啦~嘿嘿,是这么回事,Retention的值有三个,SOURCE,CLASS,RUNTIME,@Deprecate是标明该方法是过时的,
1.Retention值为SOURCE时,该注解在编译的时候就被过滤掉
2.Retention值为CLASS,该注解保存在.class文件中,在反射获取字节对象的时候被过滤掉。
3.Retention值为RUNTIME,该注解在反射的时候也能被取到。
我们做个实验:
如果我们通过反射可以获取@Deprecate注解对象并打印出来,那么@Deprecate就是RUNTIME的:- @Deprecated
- public class AnnotationMain {
- public static void main(String[] args) {
- AnnotationMain at = new AnnotationMain();
- Class atClass = at.getClass();
- if(atClass.isAnnotationPresent(Deprecated.class)){
- Deprecated d = (Deprecated)atClass.getAnnotation(Deprecated.class);
- System.out.println(d);
- }
- }
- }
复制代码 结果输出@java.lang.Deprecated()说明确实如此! |