




已阅读5页,还剩8页未读, 继续免费阅读
版权说明:本文档由用户提供并上传,收益归属内容提供方,若内容存在侵权,请进行举报或认领
文档简介
Core Java系列讲座之,Annotation,什么是Annotation?,Annotation是JDK1.5中新增的特色,它提供了一种机制,将程序元素如:方法,属性,参数,本地变量,包和元数据联系起来。这样编译器可以将元数据存储在Class文件中。这样虚拟机和其他对象可以根据这些元数据来决定如何使用这些程序元素或改变他们的行为。,Annotation的语法是?,1、类型声明方式 annotation的类型声明和一般的接口声明极其相似,区别是它在interface关键字面前使用符号。 注意: 1)annotation类型并不是程序必须定义的类型 2)方法返回值的类型被限制在以下范围:primitives、String、Class、enums、annotation和前面类型的数组;方法可以有默认值。,举个annotation类型声明的例子,package sz.starbex.bill.annotation; import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; import java.lang.annotation.Target; import java.lang.annotation.ElementType; Retention(RetentionPolicy.RUNTIME) Target(ElementType.METHOD) public interface SimpleAnnotation String value(); Retention这个meta-annotation表示我们创建的SimpleAnnotation这个Annotation将会存储在Class文件中,并在java VM运行时加载它。Target这个meta-annotation表示我们创建的SimplwAnnotation将会为描述方法,而 interface SimpleAnnotation是我们自定义的Annotation,它有一个成员叫value,返回值是String。,怎样使用Annotation?,/package sz.starbex.bill.annotation; import sz.starbex.bill.annotation.SimpleAnnotation; public class UsingSimpleAnnotation SimpleAnnotation(value=“Pass:This method will Pass“)/注意name=value的用法 public void pass() if(105) System.out.println(“测试通过“); SimpleAnnotation(“Fail:This method will Fail“)/注意name=value的用法 public void fail() if(10=0,当只有一个单一的成员时,这个成员就是value。我们也可以这样写 SimpleAnnotation(“Fail:This method will Fail“)。至此SimpleAnnotation将Pass和Fail联系起来了。,在运行时访问Annotation,一旦Annotation与程序元素联系起来,我们可以通过反射访问它们并可以取得它们的值。我们使用一个新的interface: java.lang.reflect.AnnotatedElement。java.lang.reflect.AnnotatedElement接口中 的方法有: a. boolean isAnnotationPresent(Class annotationType) 如果指定类型的注释存在于此元素上,则返回 true,否则返回 false。 b. T getAnnotation(Class annotationType) 如果存在该元素的指定类型的注释,则返回这些注释,否则返回 null。 c. Annotation getAnnotations() 返回此元素上存在的所有注释。 d. Annotation getDeclaredAnnotations() 返回直接存在于此元素上的所有注释。 你要注意 isAnnotationPresent和getAnnotation方法,它们使用了Generics,请参考我的Java 范型的Blog。 下面我们列出一些实现了AnnotatedElement 接口的类 1. java.lang.reflect.AccessibleObject 2. java.lang.Class 3. java.lang.reflect.Constructor 4. java.lang.reflect.Field 5. java.lang.reflect.Method 6. java.lang.Package,下面的Example程序说明了如何在运行环境访问Annotation,package sz.starbex.bill.annotation; import sz.starbex.bill.annotation.SimpleAnnotation; import java.lang.reflect.Method; public class SimpleAccessAnnotation static void accessAnnotationTest(Class usingAnnnotationClass) try /Object usingAnnnotationClass=Class.forName(usingAnnotationClassName).newInstance(); Method methods=usingAnnnotationClass.getDeclaredMethods();/取得对方法 for(Method method:methods) System.out.println(method.getName(); SimpleAnnotation simpleAnnotation=method.getAnnotation(SimpleAnnotation.class);/得到方法的Annotation if(simpleAnnotation!=null) System.out.print(simpleAnnotation.value()+“=“); String result=invoke(method,usingAnnnotationClass); System.out.println(result); catch (Exception e) / TODO Auto-generated catch block e.printStackTrace(); ,下面的Example程序说明了如何在运行环境访问Annotation(cont.),static String invoke(Method m, Object o) String result = “passed“; try m.invoke(m,new Object); catch (Exception e) / TODO Auto-generated catch block result = “failed“; return result; /* * param args */ public static void main(String args) / TODO Auto-generated method stub accessAnnotationTest(UsingSimpleAnnotation.class); ,Java 中的Annotation的定义,Java中的Annotation Java定义了几个标准的meta-annotation,在新Package中java.lang.annotation 中包含了以下meta-annotation: meta-annotation 说明 Target 1. annotation的target是一个被标注的程序元素。target说明了annotation所修饰的对象范围:annotation可被用于 packages、types(类、接口、枚举、annotation类型)、类型成员(方法、构造方法、成员变量、枚举值)、方法参数和本地变量(如循 环变量、catch参数)。在annotation类型的声明中使用了target可更加明晰其修饰的目标。,Java 中的Annotation的定义,2. ElementType的定义 TYPE/ Class, interface, or enum (but not annotation) FIELD/ Field (including enumerated values) METHOD/ Method (does not include constructors) PARAMETER/ Method parameter CONSTRUCTOR/ Constructor LOCAL_VARIABLE/ Local variable or catch clause ANNOTATION_TYPE/ Annotation Types (meta-annotations) PACKAGE/ Java package Retention 1. SOURCE/按照规定使用注释,但是并不将它保留到编译后的类文件中 2. CLASS/将注释保留在编译后的类文件中,但是在运行时忽略它 3. RUNTIME/将注释保留在编译后的类文件中,并在第一次加载类时读取它 Documented Documented 表示注释应该出现在类的 Javadoc 中 Inherited 一个Annotation将被继承,三个标准的Annotation,在java.lang包中: Deprecated 对不再使用的方法进行注释 Override 指明注释的方法覆盖超类的方法 SuppressWarnings 阻止编译器的警告,例:当类型不安全时,下例来说明这三个标准的Annotation:,package sz.starbex.bill.annotation; import java.util.ArrayList; import java.util.List; public class SimpleOverrideAnnotation public static void main(String args) SimpleOverrideAnnotation test = new SimpleOverrideAnnotation(); System.out.println(test.toString(); Override public String toStri
温馨提示
- 1. 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。图纸软件为CAD,CAXA,PROE,UG,SolidWorks等.压缩文件请下载最新的WinRAR软件解压。
- 2. 本站的文档不包含任何第三方提供的附件图纸等,如果需要附件,请联系上传者。文件的所有权益归上传用户所有。
- 3. 本站RAR压缩包中若带图纸,网页内容里面会有图纸预览,若没有图纸预览就没有图纸。
- 4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
- 5. 人人文库网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对用户上传分享的文档内容本身不做任何修改或编辑,并不能对任何下载内容负责。
- 6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
- 7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。
最新文档
- 2024河南省周口市卫生职业中等专业学校工作人员招聘考试及答案
- 2024海口经济学院附属艺术学校工作人员招聘考试及答案
- 美术教师劳动合同
- 租赁设备还款合同范本
- 家居装修合同注意事项
- 电子商品购销合同范本
- 重点工程项目施工合同协议书
- 电路理论试题库与答案
- 植物模拟练习题及答案
- 小学二年级数学口算速算试题
- 骨转移瘤课件
- 护士注册健康体检表下载【可直接打印版本】
- 核心素养视角下教师专业发展课件
- 污水处理培训课件
- 初中语文八年级下册第三单元综合性学习古诗苑漫步-综合性学习《古诗苑漫步》教案
- 中国十大阶层的划分课件
- 高中英语各种教材词组汇总大全(超级实用)
- 内燃机机油泵转子系列参数
- 远程视频会议系统建设方案课件
- 四十二手眼图(经典珍藏版)
- 通用横版企业报价单模板
评论
0/150
提交评论