/**
* 注解只存在与源码中
*/
@Retention(RetentionPolicy.SOURCE)
public @interface Demo {
}
/**
* 注解存在于编译后的calss文件中
*/
@Retention(RetentionPolicy.CLASS)
public @interface Demo {
}
/**
* 注解保留到运行时方法区中
*/
@Retention(RetentionPolicy.RUNTIME)
public @interface Demo {
}
网友评论