這篇文章主要介紹了如何在java項(xiàng)目中使用@Inherited元注解的相關(guān)知識,內(nèi)容詳細(xì)易懂,操作簡單快捷,具有一定借鑒價(jià)值,相信大家閱讀完這篇如何在java項(xiàng)目中使用@Inherited元注解文章都會有所收獲,下面我們一起來看看吧。
喀什網(wǎng)站建設(shè)公司成都創(chuàng)新互聯(lián)公司,喀什網(wǎng)站設(shè)計(jì)制作,有大型網(wǎng)站制作公司豐富經(jīng)驗(yàn)。已為喀什上千家提供企業(yè)網(wǎng)站建設(shè)服務(wù)。企業(yè)網(wǎng)站搭建\成都外貿(mào)網(wǎng)站建設(shè)公司要多少錢,請找那個售后服務(wù)好的喀什做網(wǎng)站的公司定做!
1.先看源碼文檔
@已記錄
@Retention(保留策略。RUNTIME)
@Target(ElementType。注釋類型)
public@interfaceInherited{
}以上代碼標(biāo)注部分可以用Google翻譯。大致意思是
指示批注類型的自動繼承。如果在標(biāo)注類型聲明中有繼承的元標(biāo)注,用戶在類聲明上查詢標(biāo)注類型,而類聲明沒有這個類型的標(biāo)注,那么類的超類會自動查詢標(biāo)注類型。這個過程將重復(fù)進(jìn)行,直到找到這種類型的注釋或者到達(dá)類層次結(jié)構(gòu)的頂部。如果沒有一個超類有這種類型的注釋,查詢將會指出這個類沒有這樣的注釋。
請注意,如果您使用注釋類型來注釋除類之外的任何東西,這種元注釋類型沒有任何效果。還要注意,這個元注釋只會導(dǎo)致從超類繼承注釋;對已實(shí)現(xiàn)接口的無效注釋。
從上面的描述可以看出,使用這個標(biāo)注的標(biāo)注父類的子類可以繼承父類的標(biāo)注。
2.代碼測試
2.1擁有@Inherited注解
@Target(ElementType。類型)
@Retention(保留策略。RUNTIME)
@繼承
public @ interfaceInheritedTest {
string value();
}@InheritedTest('擁有繼承')
publicclassPerson{
publicvoidmethod(){
}
publicvoidmethod2(){
}
} publicclassstudentextends person {
}測試:
publicclassTestInherited{
public static void main(String[]args){
CLaSS studentCLaSS=student . class;
if(student class . is notationpresent(inherited test . class)){
system . out . println(StudentClass . GetAnnotation(InheritedTest . Class))。value());
}
}
}輸出:
2.2沒有@Inherited注釋
@Target(ElementType。類型)
@Retention(保留策略。RUNTIME)
public @ interfacesinotinherited {
string value();
} @ IsNotInherited('未擁有繼承')
publicclassPerson{
publicvoidmethod(){
}
publicvoidmethod2(){
}
} publicclassstudentextends person {
}測試:
publicclassTestInherited{
public static void main(String[]args){
CLaSS studentCLaSS=student . class;
if(StudentClass . is notationPresent(iSnotinerIded . Class)){
system . out . println(StudentClass . GetAnnotation(iSNOTiHerided . class))。value());
}
}
}
不輸出容差,可見沒有@Inherited標(biāo)注的類的子類不會繼承該標(biāo)注。
關(guān)于“如何在java項(xiàng)目中使用@Inherited元注解”這篇文章的內(nèi)容就介紹到這里,感謝各位的閱讀!相信大家對“如何在java項(xiàng)目中使用@Inherited元注解”知識都有一定的了解,大家如果還想學(xué)習(xí)更多知識,歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道。