`
imiduo
  • 浏览: 10913 次
  • 性别: Icon_minigender_2
  • 来自: 北京
最近访客 更多访客>>
社区版块
存档分类

annotation2

    博客分类:
  • java
阅读更多

注解(Annotation) 为我们在代码中天界信息提供了一种形式化的方法,是我们可以在稍后

某个时刻方便地使用这些数据(通过 解析注解 来使用这些数据)。

 

    注解的语法比较简单,除了@符号的使用以外,它基本上与java的固有语法一致,java内置了三种

注解,定义在java.lang包中。

      @Override 表示当前方法是覆盖父类的方法。

      @Deprecated 表示当前元素是不赞成使用的。

      @SuppressWarnings 表示关闭一些不当的编译器警告信息。

 

 元注解@Target,@Retention,@Documented,@Inherited 
*   
*     @Target 表示该注解用于什么地方,可能的 ElemenetType 参数包括: 
*         ElemenetType.CONSTRUCTOR 构造器声明 
*         ElemenetType.FIELD 域声明(包括 enum 实例) 
*         ElemenetType.LOCAL_VARIABLE 局部变量声明 
*         ElemenetType.METHOD 方法声明 
*         ElemenetType.PACKAGE 包声明 
*         ElemenetType.PARAMETER 参数声明 
*         ElemenetType.TYPE 类,接口(包括注解类型)或enum声明 
*           
*     @Retention 表示在什么级别保存该注解信息。可选的 RetentionPolicy 参数包括: 
*         RetentionPolicy.SOURCE 注解将被编译器丢弃 
*         RetentionPolicy.CLASS 注解在class文件中可用,但会被VM丢弃 
*         RetentionPolicy.RUNTIME VM将在运行期也保留注释,因此可以通过反射机制读取注解的信息。 
*           
*     @Documented 将此注解包含在 javadoc 中 
*       
*     @Inherited 允许子类继承父类中的注解

 

示例:

Java代码

Java代码  收藏代码
  1. package Test_annotation;     
  2.   
  3. import java.lang.reflect.Method;     
  4.   
  5. public class Test_1 {     
  6.     /*  
  7.      * 被注解的三个方法  
  8.      */   
  9.     @Test(id = 1, description = "hello method_1")     
  10.     public void method_1() {     
  11.     }     
  12.   
  13.     @Test(id = 2)     
  14.     public void method_2() {     
  15.     }     
  16.   
  17.     @Test(id = 3, description = "last method")     
  18.     public void method_3() {     
  19.     }     
  20.   
  21.     /*  
  22.      * 解析注解,将Test_1类 所有被注解方法 的信息打印出来  
  23.      */   
  24.     public static void main(String[] args) {     
  25.         Method[] methods = Test_1.class.getDeclaredMethods();     
  26.         for (Method method : methods) {     
  27.             /*  
  28.              * 判断方法中是否有指定注解类型的注解  
  29.              */   
  30.             boolean hasAnnotation = method.isAnnotationPresent(Test.class);     
  31.             if (hasAnnotation) {     
  32.                 /*  
  33.                  * 根据注解类型返回方法的指定类型注解  
  34.                  */   
  35.                 Test annotation = method.getAnnotation(Test.class);     
  36.                 System.out.println("Test( method = " + method.getName()     
  37.                         + " , id = " + annotation.id() + " , description = "   
  38.                         + annotation.description() + " )");     
  39.             }     
  40.         }     
  41.     }     
  42.   
  43. }   

 

    
输出结果如下:


    Test( method = method_1 , id = 1 , description = hello method_1 ) 
    Test( method = method_2 , id = 2 , description = no description ) 
    Test( method = method_3 , id = 3 , description = last method )

分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics