黑马程序员技术交流社区
标题:
关于注解类遇到的一点小问题
[打印本页]
作者:
一碗小米周
时间:
2013-12-15 19:29
标题:
关于注解类遇到的一点小问题
本帖最后由 一碗小米周 于 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);
}
}
}
复制代码
作者:
银酱
时间:
2014-3-5 17:47
LZ解决了没,我也没结果
欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/)
黑马程序员IT技术论坛 X3.2