好吧,我试图弄清楚注释是什么,阅读了大量文档,但仍然不明白它们的作用以及如何使用它......好吧,我有这个示例注释描述:
@Documented
@interface ClassPreamble {
String author();
int currentRevision() default 1;
String lastModified() default "N/A";
String lastModifiedBy() default "N/A";
}
然后我尝试使用它,但我什至不知道会发生什么,哈哈:
@ClassPreamble (author = "James")
public class PreAmbleReal {
static public void main(String[] args) {
}
public String author();
}
那么,谁能给我解释一下?否则我会浪费几个小时的时间,什么也学不到。:/