黑马程序员技术交流社区

标题: 关于注解类遇到的一点小问题 [打印本页]

作者: 一碗小米周    时间: 2013-12-15 19:29
标题: 关于注解类遇到的一点小问题
本帖最后由 一碗小米周 于 2013-12-17 18:46 编辑

我谢了一个注解类,并应用到了另一个类中了。本来是可以输出结果的。怎么突然不能输出结果了呢?求帮忙看下。谢谢各位。
  1. import java.lang.annotation.*;
  2.         @Retention(RetentionPolicy.RUNTIME)// 编译器将把注释记录在类文件中,在运行时 VM 将保留注释
  3.         @Target(ElementType.METHOD)//指定注解类存放位置,存放在类中,方法上等等。
  4.         public @interface MyAnnotation
  5.         {
  6.                
  7.         }
复制代码
  1. import java.lang.annotation.Annotation;

  2. public class AnnotationTest {
  3.         @MyAnnotation        
  4.         public static void main(String[] args) {
  5.                 if (AnnotationTest.class.isAnnotationPresent(MyAnnotation.class)) {
  6.                         Annotation annotation = AnnotationTest.class.getAnnotation(MyAnnotation.class);
  7.                         System.out.println(annotation);
  8.                 }
  9.                 }
  10.         }
复制代码




作者: 银酱    时间: 2014-3-5 17:47
LZ解决了没,我也没结果




欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/) 黑马程序员IT技术论坛 X3.2