转载

Java注解(Annotation)详解

  • Annotation的概念
An annotation is a form of metadata, that can be added to Java source code. Classes, methods, variables, parameters and packages may be annotated. Annotations have no direct effect on the operation of the code they annotate.
- 注解是一种可以添加到Java源代码的元数据.
- 类,方法,变量,参数,包都可以被注解.
- 注解对注解的代码并没有直接的影响.
- **注解仅仅是个标记.注解之所以起作用是对其解析后做了相应的处理**
  • Annotation分类

    • 标准Annotation
      • 标准Annotation是指Java内置的三个Annnotaion:
      • @Override:用于修饰此方法覆盖了父类的方法.
      • @Deprecated:用于修饰已经过时的方法.
      • @SuppressWarnnings:用于通知java编译器禁止特定的编译警告.
    • 元Annotation(注解的注解)
      • 元Annotation是用来定义Annotation的Annotation
      • 元Annotation可以定义Annotation的作用范围,使用在什么元素上等
      • 元注解共有四种@Retention, @Target, @Inherited, @Documented
    • 自定义Annotation
  • 元Annotation

    • @Retention:注在其他的注解A上,用来说明A的保留范围,可选值 SOURCE(源码时),CLASS(编译时),RUNTIME(运行时),默认为 CLASS
      • SOURCE:A只保留在源码中,A会被编译期忽略**(源码可用)**
      • CLASS:A会通过编译保存在CLASS文件中,但会被JVM在运行时忽略,运行时不可见**(源码+CLASS可用)**
      • RUNTIME:A会被JVM获取,并在运行时通过反射获取. (源码+CLASS+运行时均可用)
    • @Target:注在其他的注解A上,用来限制A可用修饰那些程序元素.未标注Target表示无限制,可修饰所有元素.
      • ANNOTATION_TYPE: A可以应用到其他注解上
      • CONSTRUCTOR: A可以使用到构造器上
      • FIELD: A可以使用到域或属性上
      • LOCAL_VARIABLE: A可以使用到局部变量上。
      • METHOD: A可以使用到方法级别的注解上。
      • PACKAGE: A可以使用到包声明上。
      • PARAMETER: A可以使用到方法的参数上
      • TYPE: A可以使用到一个类的任何元素上
    • @Inherited:默认情况下,父类的注解不会被子类继承.
      • Inherited注在其他的注解A上.
      • 只有当A是注解在类Class上面,Inherited才会起作用,其他任何情况下无效果.
      • 当A注解在类C上面,则C的所有子孙类,都会继承应用A注解;
    • @Documented:注在其他的注解A上,A将会作为Javadoc产生的文档中的内容。注解都默认不会成为成为文档中的内容。
  • 自定义Annotation

    1. 创建自定义Annotation流程
      • public @interface 自定义注解名称
      public @interface CustomAnnotation{***}
      • 设置自定义Annotation的保留范围和目标,Retention和Target是最重要的两个元Anitation.
      @Retention( RetentionPolicy.RUNTIME )
      @Target( ElementType.TYPE )
      public @interface CustomAnnotation{***}
      • 设置自定义Annotation的注解参数(注解成员)
        • 注解参数支持的数据类型 1.所有基本数据类型(int,float,boolean,byte,double,char,long,short) 2.String类型 3.Class类型 4.enum类型 5.Annotation类型 6.以上所有类型的一维数组
        • 注解参数声明方式
        @Retention( RetentionPolicy.RUNTIME )
        @Target( ElementType.TYPE )
        public @interface CustomAnnotation{
            //注解参数类型可以是1-6中任一种,包括枚举
            public enum Skill{JAVA,ANDROID,IOS}
            Skill mySkill() default Skill.ANDROID;
            String attr1();
            //可以使用default设置默认值
            int attr2() default 100;
            //修饰符只能用public
            public boolean attr3() default false;
        }
        @Retention( RetentionPolicy.RUNTIME )
        @Target( ElementType.TYPE )
        public @interface CustomAnnotation{
            //只有一个注解参数,使用value()
            String value();
        }
        1.自定义Annotation的参数类型必须满足上一条1到6中的范围.
          2.自定义Annotation的参数访问方法只能是public,或不写.
          3.自定义Annotation的参数可以加 default 设置默认值.
          4.自定义Annotation若只有1个参数,使用value().
    2. 自定义Annotation的注解参数的默认值

    注解元素必须有确定的值,要么在定义注解的默认值中指定,要么在使用注解时指定,非基本类型的注解元素的值不可为null。因此, 使用空字符串或0作为默认值是一种常用的做法。这个约束使得处理器很难表现一个元素的存在或缺失的状态,因为每个注解的声明中,所有元素都存在,并且都具有相应的值,为了绕开这个约束,我们只能定义一些特殊的值,例如空字符串或者负数,一次表示某个元素不存在,在定义注解时,这已经成为一个习惯用法。

    ``
     示例:
     @Target(ElementType.FIELD)
     @Retention(RetentionPolicy.RUNTIME)
     public @interface AnotherAnnotation{
         String author() default "";
         int age() default -1;
     }
     ```
    1. 使用刚刚创建的自定义注解
    @CustomAnnotation(attr1 = "属性1", attr2 = 90, attr3 = true)
    public class AnnotationTestClass{
        ***
    }
  • Annotation解析

    • 运行时 Annotation 解析

      • 运行时 Annotation 指 @Retention 为 RUNTIME 的 Annotation
      • Class,Method,Field中都有以下3个方法可以调用
        • public T getAnnotation(Class annotationClass) 按照传入的参数获取指定类型的注解。返回null说明当前元素不带有此注解。
        • public final boolean isAnnotationPresent(Class<? extends Annotation> annotationType) 检查传入的注解是否存在于当前元素。
        • public Annotation[] getAnnotations() 返回该元素的所有注解,包括没有显式定义该元素上的注解。
      • 运行时 Annotation 解析示例
      public void testCustomAnnotation() {
          try {
              Class cls = Class.forName("com.jet.annotation.AnnotationTestClass");
              CustomAnnotation customAnnotation = (CustomAnnotation)cls.getAnnotation(CustomAnnotation.class);
              System.out.println("customAnnotation mySkill:" + cus.mySkill());
              System.out.println("customAnnotation attr1:" + cus.attr1());
              System.out.println("customAnnotation attr2:" + cus.attr2());
          } catch (ClassNotFoundException e) {
              e.printStackTrace();
          }
      }
    • 编译时 Annotation 解析

    编译时 Annotation 指 @Retention 为 CLASS 的 Annotation,甴编译器自动解析

原文  https://juejin.im/post/5af415ba6fb9a07ac76ed820
正文到此结束
Loading...