本帖最后由 一碗小米周 于 2013-12-17 18:46 编辑
我谢了一个注解类,并应用到了另一个类中了。本来是可以输出结果的。怎么突然不能输出结果了呢?求帮忙看下。谢谢各位。- import java.lang.annotation.*;
- @Retention(RetentionPolicy.RUNTIME)// 编译器将把注释记录在类文件中,在运行时 VM 将保留注释
- @Target(ElementType.METHOD)//指定注解类存放位置,存放在类中,方法上等等。
- public @interface MyAnnotation
- {
-
- }
复制代码- import java.lang.annotation.Annotation;
- public class AnnotationTest {
- @MyAnnotation
- public static void main(String[] args) {
- if (AnnotationTest.class.isAnnotationPresent(MyAnnotation.class)) {
- Annotation annotation = AnnotationTest.class.getAnnotation(MyAnnotation.class);
- System.out.println(annotation);
- }
- }
- }
复制代码
|