可能重複:
What function do these Java annotations serve?
How and where are Annotations used in Java?註釋是做什麼的?我該如何使用它?
嗯,我想弄清楚,是什麼註釋,閱讀大量的文檔,但還是不明白他們在做什麼以及如何使用它... 那麼我有這個樣品註釋說明:
@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();
}
所以,任何人都可以給我講解一下?否則,我會浪費幾個小時的時間,一無所獲。 :/
是的,我已經閱讀過,但沒有多大幫助。 –
@ArturasM - 也許你應該問一個問題,要求解釋你不明白的教程中的點... –