《Java19第十六章注解.ppt》由会员分享,可在线阅读,更多相关《Java19第十六章注解.ppt(19页珍藏版)》请在三一办公上搜索。
1、第十六章,注 解,回顾与作业点评,反射和API使用反射获取信息使用反射创建对象使用反射调用方法和操作成员变量代理模式,本章任务,掌握注解掌握内置的基本注解类型掌握自定义注解类型掌握对注解进行注解使用反射获取注解信息,知识要点,注解内置的基本注解类型自定义注解类型对注解进行注解使用反射获取注解信息,16.1注解概述用来说明一些说明和解释,JAVA开发和部署工具可以读取这些注释,并以某种形式处理这些注释。16.2 JDK内置的基本注解类型JAVA注解采用标记形式,后面跟上注解类型名称。,16.2.1 重写Override Override是一个限定重写方法的注解类型,用来指明被注解的方法必须是重写
2、超类中的方法,仅仅应用于方法上。,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();class Sub extends Parent/子类继承父类Overridepublic void myMethod()System.out.println(Sub.myMethod();,16.2.2 警告De
3、precated用来标记已过时的成员的注解类型,指明被注解的方法是一个过时的方法,不建议使用了。/*JavaSE5.0内置注解类型:Deprecated的使用*/public class DeprecatedTest Deprecatedpublic void myMethod()System.out.println(Deprecated注解类型用来标识一个成员已经过时);public static void main(String args)DeprecatedTest dt=new DeprecatedTest();dt.myMethod();,16.2.3 抑制警告SuppressWar
4、nings用以抑制编译器警告的注解类型,用来指明被注解的方法、变量或类在编译时如果有警告信息,就阻止警告。,import java.util.ArrayList;import java.util.List;/*JavaSE5.0内置注解类型:SuppressWarnings 的使用*/public class SuppressWarningsTest SuppressWarnings(unchecked)public static void main(String args)List list=new ArrayList();list.add(xxx);,16.3 自定义注解类型类似于接口,只
5、是在interface前多了一个。,/定义自己的一个枚举类型enum Status ACTIVE,INACTIVE;/*自定义注解类型*/public interface MyAnnotation String value();Status status()default Status.ACTIVE;/给status属性指定默认值/*使用自定义注解类型:MyAnnotation*/class UserMyAnnotationMyAnnotation(value=abc)/value属性的值为abc;status属性使用默认值Status.ACTIVEpublic void myMethod()
6、System.out.println(使用自定义的注解);MyAnnotation(value=xxx,status=Status.INACTIVE)public void myMethod2()System.out.println(使用自定义的注解);,16.4 对注解进行注解1.目标Target:用枚举类型指明某种注解的程序元素,import java.lang.annotation.ElementType;import java.lang.annotation.Target;/*元注解Target的使用*/Target(ElementType.CONSTRUCTOR,ElementTyp
7、e.METHOD)/表示自定义的这个注解类型只能作用在构造方法和成员方法上interface MethodAnnotation/MethodAnnotation/作用在类上-编译出错public class TargetTest MethodAnnotation/作用在方法上-正确public void myMethod(),2.类别Retention确定注解保留在class文件中的形式。3.文档Documented确保在javadoc生成的文档中包含注解。import java.lang.annotation.Documented;import java.lang.annotation.Re
8、tention;import java.lang.annotation.RetentionPolicy;/*/public class DocumentedTest DocAnnotationpublic void myMethod()DocumentedRetention(RetentionPolicy.RUNTIME)interface DocAnnotation,4.继承Inherited确保父类上的注解被子类继承。import java.lang.annotation.Documented;import java.lang.annotation.Inherited;import jav
9、a.lang.annotation.Retention;import java.lang.annotation.RetentionPolicy;InheritedRetention(RetentionPolicy.RUNTIME)Documentedpublic interface InheritedAnnotation String name();String value();InheritedAnnotation(name=abc,value=bcd)class Perentclass SubClass extends Perent,16.5 利用反射获取注解信息要用反射获取注解信息,注解
10、必须是Retention(RetentionPolicy.RUNTIME)接口 AnnotatedElement 中有四种反射性读取注解信息的方法:,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.Meth
11、od;/*利用反射动态获取注解的信息*/public class ReflectAnnotationInfo 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注解:valu
12、e=+myAnno.value();/取得test()方法的对应的Method实例 Method method=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属性指定默认值,