1.a comment or instruction (usually added);
his notes were appended at the end of the article
2.the act of adding notes
java.lang.annotation,接口 Annotation。對于Annotation,是Java5的新特性,JDK5引入了Metedata(元數據)很容易的就能夠調用Annotations.Annotations提供一些本來不屬于程序的數據,比如:一段代碼的作者或者告訴編譯器禁止一些特殊的錯誤。An annotation 對代碼的執行沒有什么影響。Annotations使用@annotation的形勢應用于代碼:類(class),屬性(field),方法(method)等等。一個Annotation出現在上面提到的開始位置,而且一般只有一行,也可以包含有任意的參數。