Tôi đã khai báo một chú thích như thế này:
public @interface CustomAnnot
{
String[] author() default "me";
String description() default "";
}
Do đó, một Chú thích hợp lệ sẽ là
@CustomAnnot(author="author1", description="test")
Điều tôi không thể tìm ra là, làm thế nào để đặt nhiều hơn một tác giả, vì tác giả () đã trả về Chuỗi [] nên điều này có thể thực hiện được.
@CustomAnnot(author="author1","autor2", description="test")
không hoạt động!
author={"author1","autor2"}