1. 원본 문서를 먼저 읽으세요
@Recorded
@Retention(Retention Policy. RUNTIME)
@Target(ElementType.Annotation Type)
public@interfaceInherited{
}위의 경우 Google을 사용할 수 있습니다. 코드 주석 부분이 번역됩니다. 대략적인 의미는
주석 유형의 자동 상속을 나타냅니다. 주석 유형 선언에 상속된 메타 주석이 있고 사용자가 클래스 선언에서 주석 유형을 쿼리하고 클래스 선언에 이 유형의 주석이 없으면 클래스의 슈퍼클래스가 자동으로 주석 유형을 쿼리합니다. . 이 프로세스는 이 유형의 주석을 찾거나 클래스 계층 구조의 최상위에 도달할 때까지 반복됩니다. 슈퍼클래스 중 이 유형의 주석이 없는 경우 쿼리는 클래스에 그러한 주석이 없음을 나타냅니다.
이 메타 주석 유형을 클래스 이외의 주석에 사용하는 경우 효과가 없다는 점에 유의하세요. 또한 이 메타 주석은 구현된 인터페이스의 잘못된 주석에서만 상속된 주석을 생성한다는 점에 유의하세요.
위 설명에서 볼 수 있듯이 이 Annotation을 사용하는 Annotation 상위 클래스의 하위 클래스는 상위 클래스의 Annotation을 상속받을 수 있습니다.
2. 코드 테스트
2.1에는 @Inherited 주석이 있습니다
@Target(ElementType.Type)
@Retention(Retention Policy.RUNTIME)
@Inheritance
public @interfaceInheritedTest {
문자열 값 ();
}@InheritedTest('상속 있음')
publicclassPerson{
publicvoidmethod(){
}
publicvoidmethod2(){
}
} publicclassstudentextends 사람 {
}테스트:
publicclassTest상속됨 {LPublic Static Void Main (String [] Args) {
Class StudentClass = Student.Class
IF (Student Class. Is NotationPRESNT(상속된 테스트. 클래스)) {
System. StudentClass.GetAnnotation(InheritedTest . Class)). value());
}
}
} 출력:
2.2 @Inherited 주석 없음
@Target(ElementType.Type)
@Retention(Retention Policy. RUNTIME)
public @interfacesinotin 유전된 {
문자열 값();
} @IsNotInherited('소유하지 않음')
publicclassPerson{
publicvoidmethod(){
}
publicvoidmethod2(){
}
} publicclassstudentextends 사람 {
} 테스트:
publicclassTestInherited{
public static void main(String[]args){
CLaSS StudentCLaSS=student . class;
if(StudentClass . is notationPresent(iSnotinerIded . Class)){
system . (StudentClass . GetAnnotation(iSNOTiHerided . 클래스)). value());
}
}
}🎜은 허용오차를 출력하지 않습니다. @Inherited 주석이 없는 클래스의 하위 클래스는 이 주석을 상속하지 않는다는 것을 알 수 있습니다. 🎜위 내용은 Java 프로젝트에서 @Inherited 메타 주석을 사용하는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!