JAVA注解
2019-07-05 本文已影响0人
账号已被注销
/**
* 注解只存在与源码中
*/
@Retention(RetentionPolicy.SOURCE)
public @interface Demo {
}
/**
* 注解存在于编译后的calss文件中
*/
@Retention(RetentionPolicy.CLASS)
public @interface Demo {
}
/**
* 注解保留到运行时方法区中
*/
@Retention(RetentionPolicy.RUNTIME)
public @interface Demo {
}