berło:
Zasadniczo interfejs ujawnia umowę bez ujawniania podstawowych szczegółów implementacji. W programowaniu obiektowym interfejsy definiują abstrakcyjne typy, które ujawniają zachowanie, ale nie zawierają logiki. Implementacja jest zdefiniowana przez klasę lub typ, który implementuje interfejs.
@interface: (typ adnotacji)
Weź poniższy przykład, który ma wiele komentarzy:
public class Generation3List extends Generation2List {
// Author: John Doe
// Date: 3/17/2002
// Current revision: 6
// Last modified: 4/12/2004
// By: Jane Doe
// Reviewers: Alice, Bill, Cindy
// class code goes here
}
Zamiast tego możesz zadeklarować typ adnotacji
@interface ClassPreamble {
String author();
String date();
int currentRevision() default 1;
String lastModified() default "N/A";
String lastModifiedBy() default "N/A";
// Note use of array
String[] reviewers();
}
który może następnie opisać klasę w następujący sposób:
@ClassPreamble (
author = "John Doe",
date = "3/17/2002",
currentRevision = 6,
lastModified = "4/12/2004",
lastModifiedBy = "Jane Doe",
// Note array notation
reviewers = {"Alice", "Bob", "Cindy"}
)
public class Generation3List extends Generation2List {
// class code goes here
}
PS:
Wiele adnotacji zastępuje komentarze w kodzie.
Odniesienie: http://docs.oracle.com/javase/tutorial/java/annotations/declaring.html