九色国产,午夜在线视频,新黄色网址,九九色综合,天天做夜夜做久久做狠狠,天天躁夜夜躁狠狠躁2021a,久久不卡一区二区三区

打開APP
userphoto
未登錄

開通VIP,暢享免費(fèi)電子書等14項(xiàng)超值服

開通VIP
Java注釋@interface的用法【轉(zhuǎn)】

       java用  @interface Annotation{ } 定義一個(gè)注解 @Annotation,一個(gè)注解是一個(gè)類。
@Override,@Deprecated,@SuppressWarnings為常見的3個(gè)注解。
注解相當(dāng)于一種標(biāo)記,在程序中加上了注解就等于為程序加上了某種標(biāo)記,以后,
JAVAC編譯器,開發(fā)工具和其他程序可以用反射來了解你的類以及各種元素上有無任何標(biāo)記,看你有什么標(biāo)記,就去干相應(yīng)的事。

      注解@Override用在方法上,當(dāng)我們想重寫一個(gè)方法時(shí),在方法上加@Override,當(dāng)我們方法
的名字出錯(cuò)時(shí),編譯器就會(huì)報(bào)錯(cuò),如圖:


       注解@Deprecated,用來表示某個(gè)類的屬性或方法已經(jīng)過時(shí),不想別人再用時(shí),在屬性和方法
上用@Deprecated修飾,如圖:

 

  注解@SuppressWarnings用來壓制程序中出來的警告,比如在沒有用泛型或是方法已經(jīng)過時(shí)的時(shí)候,
 如圖:

 

注解@Retention可以用來修飾注解,是注解的注解,稱為元注解。
Retention注解有一個(gè)屬性value,是RetentionPolicy類型的,Enum RetentionPolicy是一個(gè)枚舉類型,
這個(gè)枚舉決定了Retention注解應(yīng)該如何去保持,也可理解為Rentention 搭配 RententionPolicy使用。RetentionPolicy有3個(gè)值:CLASS  RUNTIME   SOURCE
用@Retention(RetentionPolicy.CLASS)修飾的注解,表示注解的信息被保留在class文件(字節(jié)碼文件)中當(dāng)程序編譯時(shí),但不會(huì)被虛擬機(jī)讀取在運(yùn)行的時(shí)候;
用@Retention(RetentionPolicy.SOURCE )修飾的注解,表示注解的信息會(huì)被編譯器拋棄,不會(huì)留在class文件中,注解的信息只會(huì)留在源文件中;
用@Retention(RetentionPolicy.RUNTIME )修飾的注解,表示注解的信息被保留在class文件(字節(jié)碼文件)中當(dāng)程序編譯時(shí),會(huì)被虛擬機(jī)保留在運(yùn)行時(shí),
所以他們可以用反射的方式讀取。RetentionPolicy.RUNTIME 可以讓你從JVM中讀取Annotation注解的信息,以便在分析程序的時(shí)候使用.

  1. package com.self;  
  2. import java.lang.annotation.Retention;  
  3. import java.lang.annotation.RetentionPolicy;  
  4.   
  5. @Retention(RetentionPolicy.RUNTIME)  
  6. public @interface MyTarget  
  7. { }  
  8. 定義個(gè)一注解@MyTarget,用RetentionPolicy.RUNTIME修飾;  
  9. package com.self;  
  10. import java.lang.reflect.Method;  
  11. public class MyTargetTest  
  12. {  
  13.  @MyTarget  
  14.  public void doSomething()  
  15.  {  
  16.   System.out.println("hello world");  
  17.  }  
  18.    
  19.  public static void main(String[] args) throws Exception  
  20.  {  
  21.   Method method = MyTargetTest.class.getMethod("doSomething",null);  
  22.   if(method.isAnnotationPresent(MyTarget.class))//如果doSomething方法上存在注解@MyTarget,則為true  
  23.   {  
  24.    System.out.println(method.getAnnotation(MyTarget.class));  
  25.   }  
  26.   }  
  27. }  
  28. 上面程序打?。?span>@com.self.MyTarget(),如果RetentionPolicy值不為RUNTIME,則不打印。  
  29.   
  30.  @Retention(RetentionPolicy.SOURCE )  
  31. public @interface Override  
  32.   
  33. @Retention(RetentionPolicy.SOURCE )  
  34. public @interface SuppressWarnings  
  35.   
  36. @Retention(RetentionPolicy.RUNTIME )  
  37. public @interface Deprecated  
  38. 由上可以看出,只有注解@Deprecated在運(yùn)行時(shí)可以被JVM讀取到  
  39.   
  40. 注解中可以定義屬性,看例子:  
  41. @Retention(RetentionPolicy.RUNTIME)  
  42. public @interface MyAnnotation  
  43. {  
  44.  String hello() default "gege";  
  45.   String world();  
  46.   int[] array() default { 2456 };  
  47.   EnumTest.TrafficLamp lamp() ;  
  48.   TestAnnotation lannotation() default @TestAnnotation(value = "ddd");  
  49.   Class style() default String.class;  
  50. }  
  51. 上面程序中,定義一個(gè)注解@MyAnnotation,定義了6個(gè)屬性,他們的名字為:  
  52. hello,world,array,lamp,lannotation,style.  
  53. 屬性hello類型為String,默認(rèn)值為gege  
  54. 屬性world類型為String,沒有默認(rèn)值  
  55. 屬性array類型為數(shù)組,默認(rèn)值為2,4,5,6  
  56. 屬性lamp類型為一個(gè)枚舉,沒有默認(rèn)值  
  57. 屬性lannotation類型為注解,默認(rèn)值為@TestAnnotation,注解里的屬性是注解  
  58. 屬性style類型為Class,默認(rèn)值為String類型的Class類型  
  59.   
  60. 看下面例子:定義了一個(gè)MyTest類,用注解@MyAnnotation修飾,注解@MyAnnotation定義的屬性都賦了值  
  61. @MyAnnotation(hello = "beijing", world="shanghai",array={},lamp=TrafficLamp.RED,style=int.class)  
  62. public class MyTest  
  63. {  
  64.  @MyAnnotation(lannotation=@TestAnnotation(value="baby"), world = "shanghai",array={1,2,3},lamp=TrafficLamp.YELLOW)  
  65.  @Deprecated  
  66.  @SuppressWarnings("")  
  67.  public void output()  
  68.  {  
  69.   System.out.println("output something!");  
  70.  }  
  71. }  
  72.  接著通過反射讀取注解的信息:  
  73. public class MyReflection  
  74. {  
  75.  public static void main(String[] args) throws Exception  
  76.  {  
  77.   MyTest myTest = new MyTest();  
  78.     Class<MyTest> c = MyTest.class;  
  79.     Method method = c.getMethod("output"new Class[] {});  
  80.        //如果MyTest類名上有注解@MyAnnotation修飾,則為true  
  81.   if(MyTest.class.isAnnotationPresent(MyAnnotation.class))  
  82.   {  
  83.    System.out.println("have annotation");  
  84.   }  
  85.    if (method.isAnnotationPresent(MyAnnotation.class))  
  86.    {  
  87.    method.invoke(myTest, null); //調(diào)用output方法  
  88.    //獲取方法上注解@MyAnnotation的信息  
  89.      MyAnnotation myAnnotation = method.getAnnotation(MyAnnotation.class);  
  90.     String hello = myAnnotation.hello();  
  91.    String world = myAnnotation.world();  
  92.    System.out.println(hello + ", " + world);//打印屬性hello和world的值  
  93.    System.out.println(myAnnotation.array().length);//打印屬性array數(shù)組的長(zhǎng)度  
  94.    System.out.println(myAnnotation.lannotation().value()); //打印屬性lannotation的值  
  95.    System.out.println(myAnnotation.style());  
  96.    }  
  97.     //得到output方法上的所有注解,當(dāng)然是被RetentionPolicy.RUNTIME修飾的  
  98.      Annotation[] annotations = method.getAnnotations();  
  99.       for (Annotation annotation : annotations)  
  100.   {  
  101.    System.out.println(annotation.annotationType().getName());  
  102.   }  
  103.    }  
  104. }  
  105. 上面程序打?。?nbsp; 
  106. have annotation  
  107. output something!  
  108. gege, shanghai  
  109. 3  
  110. baby  
  111. class java.lang.String  
  112. com.heima.annotation.MyAnnotation  
  113. java.lang.Deprecated  
  114.   
  115. 如果注解中有一個(gè)屬性名字叫value,則在應(yīng)用時(shí)可以省略屬性名字不寫。  
  116. 可見,@Retention(RetentionPolicy.RUNTIME )注解中,RetentionPolicy.RUNTIME是注解屬性值,屬性名字是value,  
  117. 屬性的返回類型是RetentionPolicy,如下:  
  118. public @interface MyTarget  
  119. {  
  120.     String value();  
  121. }  
  122. 可以這樣用:  
  123.   @MyTarget("aaa")  
  124.  public void doSomething()  
  125.  {  
  126.   System.out.println("hello world");  
  127.  }  
  128.    
  129. 注解@Target也是用來修飾注解的元注解,它有一個(gè)屬性ElementType也是枚舉類型,  
  130. 值為:ANNOTATION_TYPE CONSTRUCTOR  FIELD LOCAL_VARIABLE METHOD PACKAGE PARAMETER TYPE  
  131. @Target(ElementType.METHOD) 修飾的注解表示該注解只能用來修飾在方法上。  
  132. @Target(ElementType.METHOD)  
  133. @Retention(RetentionPolicy.RUNTIME)  
  134. public @interface MyTarget  
  135. {  
  136.  String value() default "hahaha";  
  137. }  
  138. 如把@MyTarget修飾在類上,則程序報(bào)錯(cuò),如:  
  139. @MyTarget  
  140. public class MyTargetTest  
  141. 注解大都用在開發(fā)框架中吧,好了有關(guān)注解就學(xué)習(xí)那么多了,謝謝。  


本站僅提供存儲(chǔ)服務(wù),所有內(nèi)容均由用戶發(fā)布,如發(fā)現(xiàn)有害或侵權(quán)內(nèi)容,請(qǐng)點(diǎn)擊舉報(bào)。
打開APP,閱讀全文并永久保存 查看更多類似文章
猜你喜歡
類似文章
java.lang和java.lang.annotation中實(shí)現(xiàn)Annotation的類小結(jié)
Java魔法堂:自定義和解析注解
JAVA 基礎(chǔ)篇-注解的概念
張龍 Annotation學(xué)習(xí)筆記
Java注解Annotation詳解
Java注解
更多類似文章 >>
生活服務(wù)
熱點(diǎn)新聞
分享 收藏 導(dǎo)長(zhǎng)圖 關(guān)注 下載文章
綁定賬號(hào)成功
后續(xù)可登錄賬號(hào)暢享VIP特權(quán)!
如果VIP功能使用有故障,
可點(diǎn)擊這里聯(lián)系客服!

聯(lián)系客服