以下是注释代码
public @interface ColumnName {
String value();
String datatype();
}
我想让datatype
成为可选参数,例如
@ColumnName(value="password")
应该是有效的代码。
答案 0 :(得分:111)
似乎official documentation中的第一个例子说明了一切......
/**
* Describes the Request-For-Enhancement(RFE) that led
* to the presence of the annotated API element.
*/
public @interface RequestForEnhancement {
int id();
String synopsis();
String engineer() default "[unassigned]";
String date() default "[unimplemented]";
}
答案 1 :(得分:31)
要使其成为可选项,您可以为其指定一个默认值:
public @interface ColumnName {
String value();
String datatype() default "String";
}
然后在使用注释时不需要指定。