Java中的注解是如何工作的?
原文:http://idlebrains.org/tutorials/java-tutorials/how-annotations-work-java/
译文:http://www.importnew.com/10294.html
声明:
@interface 声明
元注解:
java.lang.annotation提供了四种元注解,专门注解其他的注解:
@Documented –注解是否将包含在JavaDoc中
@Retention –什么时候使用该注解
@Target–注解用于什么地方
@Inherited – 是否允许子类继承该注解
使用原理:
利用动态代理/反射 getAnnotation
网友评论