元注解(meta-annotaion):注解其他注解的注解
注解(annotation):jdk1.5版本后新增的
注释是:comment
一些基本的注解
-
FactionInterface():函数式接口
-
@Deprecated():标明此成员目前版本已弃用
-
@SupperWarnings():抑制报错
元注解基本的四个
- @target:可以放在什么上面()
- @Retention:可以作用到哪个阶段
- @Documented:生成javadoc文档时是否把api标注出来
- @inherited:是否可以被继承
package com.li.changGe.annotation;
import java.lang.annotation.*;
//元注解作用
@Target({ElementType.TYPE,ElementType.METHOD})
@Retention(RetentionPolicy.RUNTIME)
@Documented
@Inherited
public @interface Meta_AnnotationDemo01 {}