您好,登錄后才能下訂單哦!
本篇文章給大家分享的是有關怎么在java項目中使用@Inherited元注解,小編覺得挺實用的,因此分享給大家學習,希望大家閱讀完這篇文章后可以有所收獲,話不多說,跟著小編一起來看看吧。
1.先看源碼文檔
@Documented @Retention(RetentionPolicy.RUNTIME) @Target(ElementType.ANNOTATION_TYPE) public @interface Inherited { }
上述代碼注釋部分可以用谷歌翻譯大法大致意思是
表示注釋類型自動繼承。 如果在注釋類型聲明中存在繼承的元注釋,并且用戶在類聲明上查詢注釋類型,并且類聲明沒有此類型的注釋,則該類的超類將自動查詢注釋類型。 將重復此過程,直到找到此類型的注釋,或者達到類層次結構(Object)的頂部。 如果沒有超類具有此類型的注釋,則查詢將指示所討論的類沒有這樣的注釋。
請注意,如果使用注釋類型來注釋除類之外的任何內容,則此元注釋類型不起作用。 還要注意,這個元注釋只會導致從超類繼承注釋; 已實現的接口上的注釋無效。
通過上述描述可知,使用該注解的注解父類的子類可以繼承父類的注解。
2.代碼測試
2.1擁有@Inherited注解
@Target(ElementType.TYPE) @Retention(RetentionPolicy.RUNTIME) @Inherited public @interface InheritedTest { String value(); }
@InheritedTest("擁有Inherited") public class Person { public void method(){ } public void method2(){ } }
public class Student extends Person { }
測試:
public class TestInherited { public static void main(String[] args) { Class<Student> studentClass = Student.class; if (studentClass.isAnnotationPresent(InheritedTest.class)){ System.out.println(studentClass.getAnnotation(InheritedTest.class).value()); } } }
輸出:
2.2未擁有@Inherited注解
@Target(ElementType.TYPE) @Retention(RetentionPolicy.RUNTIME) public @interface IsNotInherited { String value(); }
@IsNotInherited("未擁有Inherited") public class Person { public void method(){ } public void method2(){ } }
public class Student extends Person { }
測試:
public class TestInherited { public static void main(String[] args) { Class<Student> studentClass = Student.class; if (studentClass.isAnnotationPresent(IsNotInherited.class)){ System.out.println(studentClass.getAnnotation(IsNotInherited.class).value()); } } }
沒有輸出任何任容,由此可知未擁有@Inherited注解的注解的類的子類不會被繼承該注解。
以上就是怎么在java項目中使用@Inherited元注解,小編相信有部分知識點可能是我們日常工作會見到或用到的。希望你能通過這篇文章學到更多知識。更多詳情敬請關注億速云行業資訊頻道。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。