@AnnotationTest
public class AnnotationDemo {
/**
* @param args
*/
public static void main(String[] args) {
if(AnnotationDemo.class.isAnnotationPresent(AnnotationTest.class)){
//annotationTest实例对象是通过反射得到的
Annotation annotationTest=(AnnotationTest)Annotation.class.getAnnotation(AnnotationTest.class);
System.out.println(annotationTest);
}else {
System.out.println("d");
}
}
}
@Retention(RetentionPolicy.RUNTIME)
//@Target({ElementType.METHOD,ElementType.TYPE})
public @interface AnnotationTest {
}
为什么我的注解打印出来的是空 我明明写过了注解的方法了呀
|