📜  java代码示例中的标记注释

📅  最后修改于: 2022-03-11 14:52:17.190000             🧑  作者: Mango

代码示例1
/*The only purpose is to mark a declaration.
These annotations contain no members and do not consist any data. 
Thus, its presence as an annotation is sufficient. 
Since, marker interface contains no members, simply determining whether it is present or absent is sufficient. 

@Override is an example of Marker Annotation.

Example: - */

@TestAnnotation()