编程语言
首页 > 编程语言> > 【Java】元注解

【Java】元注解

作者:互联网

//测试元注解
@MyAnnotation
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{

}

标签:Java,Target,Inherited,注解,Documented,ElementType,class
来源: https://blog.csdn.net/weixin_45378289/article/details/110874230