본문 바로가기

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

JAVA

Annotation - @Inherited

@Inherited
부모 클래스에서 애너테이션이 상속되도록 지정한다.
즉, 부모 클래스에 적용된 애너테이션은 자식 클래스에도 자동으로 적용됩니다.

import java.lang.annotation.Inherited;

@Inherited
@interface MyAnnotation {
 // 애너테이션 내용
}

'JAVA' 카테고리의 다른 글

Annotation - @Repeatable  (0) 2024.02.15
Annotation - @Retention  (0) 2024.02.15
Annotation - @Documented  (0) 2024.02.15
Annotation - @Target  (0) 2024.02.15
Annotation - @Native  (0) 2024.02.15