1.注解概述
2.自定义注解
* 自定义注解通过都会指明两个元注解:Retention Target * 1.注解声明为: @interface * 2.内部定义成员,通常使用value表示 * 3.可以指定成员的默认值,使用default定义 * 4.如果自定义注解没有成员,表明是一个标识作用 比如@Override * 如果有成员,在使用注解时,一定指定成员的值 * * 5.jdk提供了四种元注解:对现有现有注解进行解释说明 * Retention: 指定所修饰的 Annotation 的生命周期:SOURCE,CLASS,RUNTIME * CLASS:默认行为 * RUNTIME:只有声明为RUNTIME生命周期的注解,才能通过反射 * Target: 用于指定被修饰Annotation能用于修饰哪些程序元素 * Documented: 表示所修饰的注解在被javadoc解析时保留下了 * Inherited:被它修饰的Annotation将具有继承性 * * 6.jdk8.0 以后注解的新特性 :可重复注解,类型注解 * 6.1可重复注解:1.MyAnnotation上声明@Repeatable(MyAnnotations.class) * 2.MyAnnotations的Retention和Target等注解和MyAnnotation相同 * 6.2类型注解: * ElementType.TYPE_PARAMETER: 表示该注解能写在类型变量的声明语句中 * ElementType.TYPE_USE, 表示该注解能在使用类型的任何语句中@Repeatable(MyAnnotations.class) @Target({TYPE, FIELD,METHOD, PARAMETER,CONSTRUCTOR, LOCAL_VARIABLE,PACKAGE,TYPE_PARAMETER,TYPE_USE}) @Retention(RetentionPolicy.RUNTIME) public @interface MyAnnotation { String value() default "hello"; } /* 类型注解的测试 */ class Generic<@MyAnnotation T>{ public void show(){ ArrayList<@MyAnnotation String > list = new ArrayList<>(); int num = (@MyAnnotation int )10l; }