본문 바로가기

명사 美 비격식 (무리 중에서) 아주 뛰어난[눈에 띄는] 사람[것]

JAVA

Annotation - @Repeatable

@Repeatable
같은 애너테이션을 여러 번 사용할 수 있도록 허용한다.
Java 8부터 도입되었습니다.

import java.lang.annotation.Repeatable;

@Repeatable(MyAnnotations.class)
@interface MyAnnotation {
 // 애너테이션 내용
}

@interface MyAnnotations {
 MyAnnotation[] value();
}