상호 작용:
일반적으로 인터페이스는 기본 구현 세부 사항을 노출하지 않고 계약을 노출합니다. 객체 지향 프로그래밍에서 인터페이스는 동작을 노출하지만 논리는 포함하지 않는 추상 유형을 정의합니다. 구현은 인터페이스를 구현하는 클래스 또는 유형으로 정의됩니다.
@interface : (주석 유형)
주석이 많은 아래 예제를 보자.
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
}
이 대신 주석 유형을 선언 할 수 있습니다
@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();
}
그러면 다음과 같이 클래스에 주석을 달 수 있습니다.
@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
}
추신 :
많은 주석이 코드의 주석을 대체합니다.
참조 : http://docs.oracle.com/javase/tutorial/java/annotations/declaring.html