美文网首页
java注解

java注解

作者: 抄袭 | 来源:发表于2018-03-16 14:39 被阅读0次

    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

    相关文章

      网友评论

          本文标题:java注解

          本文链接:https://www.haomeiwen.com/subject/upplqftx.html