自从90年代末在大学里使用JBuilder后,我就没有接触过Java,所以我有点不熟悉Java——无论如何,这周我一直在做一个小的Java项目,并使用Intellij IDEA作为我的IDE,以改变我常规的。net开发的节奏。
我注意到它支持添加接口和@interfaces,什么是@interface,它与普通接口有什么不同?
public interface Test {
}
vs.
public @interface Test {
}
我做了一些搜索,但没有找到大量有用的信息引用@interface。
接口:
通常,接口公开契约而不公开底层实现细节。在面向对象编程中,接口定义了公开行为的抽象类型,但不包含逻辑。实现由实现接口的类或类型定义。
@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:(注释类型)
以下面这个有很多评论的例子为例:
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
接口
在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 {
}
参考资料- http://tutorials.jenkov.com/java/annotations.html