真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

怎么在java項(xiàng)目中使用@Inherited元注解

本篇文章給大家分享的是有關(guān)怎么在java項(xiàng)目中使用@Inherited元注解,小編覺得挺實(shí)用的,因此分享給大家學(xué)習(xí),希望大家閱讀完這篇文章后可以有所收獲,話不多說,跟著小編一起來看看吧。

創(chuàng)新互聯(lián)公司是一家成都網(wǎng)站設(shè)計(jì)、成都做網(wǎng)站,提供網(wǎng)頁設(shè)計(jì),網(wǎng)站設(shè)計(jì),網(wǎng)站制作,建網(wǎng)站,按需開發(fā),網(wǎng)站開發(fā)公司,成立于2013年是互聯(lián)行業(yè)建設(shè)者,服務(wù)者。以提升客戶品牌價(jià)值為核心業(yè)務(wù),全程參與項(xiàng)目的網(wǎng)站策劃設(shè)計(jì)制作,前端開發(fā),后臺(tái)程序制作以及后期項(xiàng)目運(yùn)營并提出專業(yè)建議和思路。

1.先看源碼文檔

@Documented
@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.ANNOTATION_TYPE)
public @interface Inherited {
}

上述代碼注釋部分可以用谷歌翻譯大法大致意思是

表示注釋類型自動(dòng)繼承。 如果在注釋類型聲明中存在繼承的元注釋,并且用戶在類聲明上查詢注釋類型,并且類聲明沒有此類型的注釋,則該類的超類將自動(dòng)查詢注釋類型。 將重復(fù)此過程,直到找到此類型的注釋,或者達(dá)到類層次結(jié)構(gòu)(Object)的頂部。 如果沒有超類具有此類型的注釋,則查詢將指示所討論的類沒有這樣的注釋。

請(qǐng)注意,如果使用注釋類型來注釋除類之外的任何內(nèi)容,則此元注釋類型不起作用。 還要注意,這個(gè)元注釋只會(huì)導(dǎo)致從超類繼承注釋; 已實(shí)現(xiàn)的接口上的注釋無效。

通過上述描述可知,使用該注解的注解父類的子類可以繼承父類的注解。

2.代碼測(cè)試

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 {
}

測(cè)試:

public class TestInherited {


  public static void main(String[] args) {
    Class studentClass = Student.class;
    if (studentClass.isAnnotationPresent(InheritedTest.class)){
      System.out.println(studentClass.getAnnotation(InheritedTest.class).value());
    }


  }
}

輸出:

怎么在java項(xiàng)目中使用@Inherited元注解

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 {
}

測(cè)試:

public class TestInherited {


  public static void main(String[] args) {
    Class studentClass = Student.class;
    if (studentClass.isAnnotationPresent(IsNotInherited.class)){
      System.out.println(studentClass.getAnnotation(IsNotInherited.class).value());
    }


  }
}

怎么在java項(xiàng)目中使用@Inherited元注解

沒有輸出任何任容,由此可知未擁有@Inherited注解的注解的類的子類不會(huì)被繼承該注解。

以上就是怎么在java項(xiàng)目中使用@Inherited元注解,小編相信有部分知識(shí)點(diǎn)可能是我們?nèi)粘9ぷ鲿?huì)見到或用到的。希望你能通過這篇文章學(xué)到更多知識(shí)。更多詳情敬請(qǐng)關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道。


網(wǎng)站名稱:怎么在java項(xiàng)目中使用@Inherited元注解
轉(zhuǎn)載注明:http://weahome.cn/article/jsoiih.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部