Answers:
接口:
通常,接口公开合同而不公开基础实现细节。在面向对象的编程中,接口定义了抽象类型,这些抽象类型公开行为,但不包含逻辑。实现由实现接口的类或类型定义。
@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
}
PS: 许多注释会替换代码中的注释。
参考:http : //docs.oracle.com/javase/tutorial/java/annotations/declaring.html
该interface
关键字表明您声明在Java中传统的接口类。
的@interface
关键字用于声明一个新的注释类型。
有关语法的说明,请参见docs.oracle注释教程。如果您真的想详细了解含义,
请参阅JLS@interface
。
interface:
为实现它的类定义合同
@interface:
定义注释的合同
接口 Java编程语言中的是一种抽象类型,用于指定类必须实现的行为。它们类似于协议。使用interface关键字声明接口
@interface 用于创建您自己的(自定义)Java批注。注释在它们自己的文件中定义,就像Java类或接口一样。这是自定义Java注释示例:
@interface MyAnnotation {
String value();
String name();
int age();
String[] newNames();
}
本示例定义了一个名为MyAnnotation的注释,该注释具有四个元素。注意@interface关键字。这会向Java编译器发出信号,这是Java注释定义。
注意,每个元素的定义都类似于接口中的方法定义。它具有数据类型和名称。您可以将所有原始数据类型用作元素数据类型。您也可以使用数组作为数据类型。您不能将复杂对象用作数据类型。
要使用上面的注释,可以使用如下代码:
@MyAnnotation(
value="123",
name="Jakob",
age=37,
newNames={"Jenkov", "Peterson"}
)
public class MyClass {
}