填空题:自定义一个注解AnnotationTest,设置参数的默认值为空字符串。
自定义一个注解AnnotationTest,设置参数的默认值为空字符串。
@Target({TYPE, METHOD})
@Retention(RetentionPolicy.RUNTIME )
public @@[@interface AnnotationTest](2){
String value() @@[default ""](2);
}
答案:
第1空:@interface AnnotationTest ||
第2空:default "" ||
@Target({TYPE, METHOD})
@Retention(RetentionPolicy.RUNTIME )
public @@[@interface AnnotationTest](2){
String value() @@[default ""](2);
}
答案:
第1空:@interface AnnotationTest ||
第2空:default "" ||