时间:2021-05-20
一、自定义注解
元注解:
@interface注解: 定义注解接口
@Target注解: 用于约束被描述的注解的使用范围,当被描述的注解超出使用范围则编译失败。如:ElementType.METHOD,ElementType.TYPE;
@Retention 注解:用于约束被定义注解的作用范围,作用范围有三个:
1、RetentionPolicy.SOURCE:作用范围是源码,作用于Java文件中,当执行javac时去除该注解。
2、RetentionPolicy.CLASS:作用范围是二进制码,就是存在于class文件中,当执行Java时去除该注解。
3、RetentionPolicy.RUNTIME:作用范围为运行时,就是我们可以通过动态获取该注释。
@Documented:用于指定javadoc生成API文档时显示该注释。
@Inherited:用于指定被描述的注释可以被其描述的类的子类继承,默认情况是不能被其子类继承。
自定义注解接口:
package com.java.annotation;import java.lang.annotation.Documented;import java.lang.annotation.ElementType;import java.lang.annotation.Inherited;import java.lang.annotation.Retention;import java.lang.annotation.RetentionPolicy;import java.lang.annotation.Target;@Target({ElementType.METHOD,ElementType.TYPE})@Inherited@Documented@Retention(RetentionPolicy.RUNTIME)public @interface Annotation_my { String name() default "张三";//defalt 表示默认值 String say() default "hello world"; int age() default 21; }接下来我们定义一个接口:
package com.java.annotation;@Annotation_my //使用我们刚才定义的注解public interface Person { @Annotation_my public void name(); @Annotation_my public void say(); @Annotation_my public void age();}接口定义好了,我们就可以写接口的实现类了(接口不能实例化)
package com.java.annotation;@Annotation_my@SuppressWarnings("unused")public class Student implements Person { private String name; @Override @Annotation_my(name="流氓公子") //赋值给name 默认的为张三//在定义注解时没有给定默认值时,在此处必须name赋初值 public void name() { } @Override @Annotation_my(say=" hello world !") public void say() { } @Override @Annotation_my(age=20) public void age() { }}然后我们就编写一个测试类测试我们的注解
package com.java.annotation;import java.lang.annotation.Annotation;import java.lang.reflect.Field;import java.lang.reflect.Method;public class Text { Annotation[] annotation = null; public static void main(String[] args) throws ClassNotFoundException { new Text().getAnnotation(); } public void getAnnotation() throws ClassNotFoundException{ Class<?> stu = Class.forName("com.java.annotation.Student");//静态加载类 boolean isEmpty = stu.isAnnotationPresent(com.java.annotation.Annotation_my.class);//判断stu是不是使用了我们刚才定义的注解接口if(isEmpty){ annotation = stu.getAnnotations();//获取注解接口中的 for(Annotation a:annotation){ Annotation_my my = (Annotation_my)a;//强制转换成Annotation_my类型 System.out.println(stu+":\n"+my.name()+" say: "+my.say()+" my age: "+my.age()); } } Method[] method = stu.getMethods();// System.out.println("Method"); for(Method m:method){ boolean ismEmpty = m.isAnnotationPresent(com.java.annotation.Annotation_my.class); if(ismEmpty){ Annotation[] aa = m.getAnnotations(); for(Annotation a:aa){ Annotation_my an = (Annotation_my)a; System.out.println(m+":\n"+an.name()+" say: "+an.say()+" my age: "+an.age()); } } } //get Fields by force System.out.println("get Fileds by force !"); Field[] field = stu.getDeclaredFields(); for(Field f:field){ f.setAccessible(true); System.out.println(f.getName()); } System.out.println("get methods in interfaces !"); Class<?> interfaces[] = stu.getInterfaces(); for(Class<?> c:interfaces){ Method[] imethod = c.getMethods(); for(Method m:imethod){ System.out.println(m.getName()); } } }}以上这篇Java 自定义注解及利用反射读取注解的实例就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持。
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
本文实例讲述了Java自定义注解用法。分享给大家供大家参考,具体如下:一自定义注解语法[public]@interfaceAnnotation的名称{[数据类型
springmvc自定义注解以及自定义注解的解析一、自定义注解名字@Target({ElementType.TYPE,ElementType.METHOD})/
本文实例讲述了Java通过反射访问注解信息的方法。分享给大家供大家参考,具体如下:一点睛利用Java的反射机制,可以访问注解信息。比如在调用某个方法时,需要知道
对于自定义注解这里就不唠叨了,百度一大堆,这里有我一个自定义注解@Retention(RetentionPolicy.RUNTIME)@Target({Elem
此例子,用于说明如何在Java中对“注解Annotation”的定义、使用和解析的操作。注解一般用于自定义开发框架中,至于为什么使用,此处不作过多说明,这里只说