开课吧硬核父母成长计划
自定义注解
定义注解用 @interface, 注解中只能包含属性
里面的方法实际上是声明的属性,方法名称就是属性名称,返回值类型就是属性的类型
若只有一个属性,一般名为 value
@Target(ElementType.TYPE)@Retention(RetentionPolicy.RUNTIME)@Documentedpublic @interface EntryLog {
// 属性 value
String value() default "";
String[] codes() default {};}