Home > Java > javaTutorial > How to implement repeated annotations in java

How to implement repeated annotations in java

WBOY
Release: 2023-04-28 23:55:05
forward
1743 people have browsed it

Explanation

1. The @Repeatable annotation needs to annotate the container class.

2. Two types are required to define repeated comments, one is the comment type and the other is the comment container type. Now, in the show() method of the TestAnnotation class, the @MyAnnotation annotation can be repeated directly.

Java8 also provides a new API when analyzing annotations.

Example

@Repeatable(Authors.class)
@interface Author {
    String name();
}
 
@interface Authors {
    Author[] value();
}
 
@Author(name = "a")
@Author(name = "b")
class Article {
}
Copy after login

The above is the detailed content of How to implement repeated annotations in java. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:yisu.com
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template