《Java19第十六章-注解.ppt》由会员分享,可在线阅读,更多相关《Java19第十六章-注解.ppt(19页珍藏版)》请在淘文阁 - 分享文档赚钱的网站上搜索。
1、安卓越科技(北京)有限公司第十六章第十六章注 解安卓越科技(北京)有限公司回顾与作业点评回顾与作业点评 反射和API使用反射获取信息使用反射创建对象使用反射调用方法和操作成员变量代理模式安卓越科技(北京)有限公司本章任务本章任务 掌握注解掌握内置的基本注解类型掌握自定义注解类型掌握对注解进行注解使用反射获取注解信息安卓越科技(北京)有限公司知识要点知识要点 注解内置的基本注解类型自定义注解类型对注解进行注解使用反射获取注解信息安卓越科技(北京)有限公司16.1注解概述用来说明一些说明和解释,JAVA开发和部署工具可以读取这些注释,并以某种形式处理这些注释。16.2 JDK内置的基本注解类型JA
2、VA注解采用标记形式,后面跟上注解类型名称。安卓越科技(北京)有限公司 16.2.1 重写Override Override是一个限定重写方法的注解类型,用来指明被注解的方法必须是重写超类中的方法,仅仅应用于方法上。安卓越科技(北京)有限公司public class OverrideTest public static void main(String args)Parent clazz=new Sub();clazz.myMethod();class Parent /父类public void myMethod()System.out.println(Parent.myMethod();cl
3、ass Sub extends Parent /子类继承父类Overridepublic void myMethod()System.out.println(Sub.myMethod();安卓越科技(北京)有限公司 16.2.2 警告Deprecated用来标记已过时的成员的注解类型,指明被注解的方法是一个过时的方法,不建议使用了。/*JavaSE5.0内置注解类型:Deprecated的使用*/public class DeprecatedTest Deprecatedpublic void myMethod()System.out.println(Deprecated注解类型用来标识一个成
4、员已经过时);public static void main(String args)DeprecatedTest dt=new DeprecatedTest();dt.myMethod();安卓越科技(北京)有限公司16.2.3 抑制警告SuppressWarnings用以抑制编译器警告的注解类型,用来指明被注解的方法、变量或类在编译时如果有警告信息,就阻止警告。import java.util.ArrayList;import java.util.List;/*JavaSE5.0内置注解类型:SuppressWarnings 的使用*/public class SuppressWarnin
5、gsTest SuppressWarnings(unchecked)public static void main(String args)List list=new ArrayList();list.add(xxx);安卓越科技(北京)有限公司 16.3 自定义注解类型类似于接口,只是在interface前多了一个。/定义自己的一个枚举类型enum Status ACTIVE,INACTIVE;/*自定义注解类型*/public interface MyAnnotation String value();Status status()default Status.ACTIVE;/给statu
6、s属性指定默认值/*使用自定义注解类型:MyAnnotation*/class UserMyAnnotationMyAnnotation(value=abc)/value属性的值为abc;status属性使用默认值Status.ACTIVEpublic void myMethod()System.out.println(使用自定义的注解);MyAnnotation(value=xxx,status=Status.INACTIVE)public void myMethod2()System.out.println(使用自定义的注解);安卓越科技(北京)有限公司 16.4 对注解进行注解1.目标T
7、arget:用枚举类型指明某种注解的程序元素import java.lang.annotation.ElementType;import java.lang.annotation.Target;/*元注解Target的使用*/Target(ElementType.CONSTRUCTOR,ElementType.METHOD)/表示自定义的这个注解类型只能作用在构造方法和成员方法上interface MethodAnnotation/MethodAnnotation /作用在类上-编译出错public class TargetTest MethodAnnotation /作用在方法上-正确pub
8、lic void myMethod()安卓越科技(北京)有限公司 2.类别Retention确定注解保留在class文件中的形式。3.文档Documented确保在javadoc生成的文档中包含注解。import java.lang.annotation.Documented;import java.lang.annotation.Retention;import java.lang.annotation.RetentionPolicy;/*/public class DocumentedTest DocAnnotationpublic void myMethod()DocumentedRet
9、ention(RetentionPolicy.RUNTIME)interface DocAnnotation 安卓越科技(北京)有限公司4.继承Inherited确保父类上的注解被子类继承。import java.lang.annotation.Documented;import java.lang.annotation.Inherited;import java.lang.annotation.Retention;import java.lang.annotation.RetentionPolicy;InheritedRetention(RetentionPolicy.RUNTIME)Doc
10、umentedpublic interface InheritedAnnotation String name();String value();InheritedAnnotation(name=abc,value=bcd)class Perentclass SubClass extends Perent安卓越科技(北京)有限公司 16.5 利用反射获取注解信息要用反射获取注解信息,注解必须是Retention(RetentionPolicy.RUNTIME)接口 AnnotatedElement 中有四种反射性读取注解信息的方法:安卓越科技(北京)有限公司 安卓越科技(北京)有限公司安卓越科
11、技(北京)有限公司安卓越科技(北京)有限公司 import java.lang.annotation.Annotation;import java.lang.annotation.ElementType;import java.lang.annotation.Retention;import java.lang.annotation.RetentionPolicy;import java.lang.annotation.Target;import java.lang.reflect.Method;/*利用反射动态获取注解的信息*/public class ReflectAnnotationIn
12、fo public static void main(String args)throws SecurityException,NoSuchMethodException/获取类上的指定注解的Annotation实例Annotation anno1=UserMyAnno.class.getAnnotation(MyAnno.class);if(anno1!=null)MyAnno myAnno=(MyAnno)anno1;System.out.println(类上的MyAnno注解:value=+myAnno.value();/取得test()方法的对应的Method实例 Method met
13、hod=UserMyAnno.class.getMethod(test);/取得test()方法上所有的Annotation Annotation annotations=method.getAnnotations();for(Annotation anno:annotations)System.out.println(注解类型名:+anno.annotationType().getName();安卓越科技(北京)有限公司MyAnnoclass UserMyAnno /在UserMyAnno类上使用MyAnno注解MyAnno(method)Deprecatedpublic void test()/在test方法上使用MyAnno注解和Deprecated注解System.out.println(test);/这个注解可以用于类、接口、枚举、方法之上且可以在运行时用反射来获取它的信息Target(ElementType.TYPE,ElementType.METHOD)Retention(RetentionPolicy.RUNTIME)interface MyAnnoString value()default 无值;/给value属性指定默认值
限制150内