黑马程序员技术交流社区

标题: 注解属性的类型 [打印本页]

作者: 张波    时间: 2014-10-9 12:47
标题: 注解属性的类型
注解属性类型包括: 原始类型, String类型, Class类型, enum类型,  数组类型。
  1. package com.itheima;

  2. import java.lang.annotation.ElementType;
  3. import java.lang.annotation.Retention;
  4. import java.lang.annotation.RetentionPolicy;
  5. import java.lang.annotation.Target;

  6. /*
  7. * 定义一个注解
  8. */

  9. //定义注解的生命周期
  10. @Retention(RetentionPolicy.RUNTIME)  
  11. //定义注解的作用区域
  12. @Target({ElementType.METHOD, ElementType.TYPE})
  13. public @interface ItcastAnnotation {
  14.         //String 类型
  15.         String color() default "green";
  16.         String value();
  17.         //枚举类型
  18.         Enum.WeekDay weekDay() default Enum.WeekDay.SUM;
  19.         //数组类型
  20.         int[] arrayArr() default {1, 2, 3};       
  21.         //注解类型
  22.         MetaAnnotation annotation() default @MetaAnnotation("meta");
  23.         //Class类型
  24.         Class clas() default ItcastAnnotation.class;
  25.        
  26. }
复制代码








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