元注解
作者:互联网
package annotation;
import java.lang.annotation.*;
//测试元注解
public class Test02 {
}
//定义一个注解
//@Target表示我们的注解可以用到哪些地方
//可以用到方法上 //可以用到类上
@Target(value = {ElementType.METHOD,ElementType.TYPE})
//Retention 表示我们的源码在什么地方生效
//在运行时生效 //RUNTIME > CLASS >SOURCES
@Retention(value = RetentionPolicy.RUNTIME)
//Documented表示是否将我们的注解生成在JAVAdoc中
@Documented
//@Inherited 表示子类可以继承父类的注解
@Inherited
@interface MyAnnotation{
}
标签:用到,Inherited,注解,Documented,RUNTIME,annotation 来源: https://www.cnblogs.com/nigustudent/p/14878762.html