是否可以为其他批注类型的注记字段指定默认值?
2022-09-04 01:11:03
public @interface InnerAnnotation {
String value() default "hello";
}
public @interface OuterAnnotation {
InnerAnnotation value() default ???
}
还有一个案例:
public @interface AnotherOuterAnnotation {
InnerAnnotation[] value() default ??? UPD: {}
}