java 获取注解_Java 自定义注解及利用反射读取注解

一、自定义注解

元注解:

@interface注解: 定义注解接口

@Target注解: 用于约束被描述的注解的使用范围,当被描述的注解超出使用范围则编译失败。如:ElementType.METHOD,ElementType.TYPE;

@Retention 注解:用于约束被定义注解的作用范围,作用范围有三个:

1,、RetentionPolicy.SOURCE:作用范围是源码,作用于Java文件中,当执行javac时去除该注解。

2、RetentionPolicy.CLASS:作用范围是二进制码,就是存在于class文件中,当执行Java时去除该注解。

3、RetentionPolicy.RUNTIME:作用范围为运行时,就是我们可以通过动态获取该注释。

@Documented:用于指定javadoc生成API文档时显示该注释。

@Inherited:用于指定被描述的注释可以被其描述的类的子类继承,默认情况是不能被其子类继承。

自定义注解接口:

1 packagecom.java.annotation;2

3 importjava.lang.annotation.Documented;4 importjava.lang.annotation.ElementType;5 importjava.lang.annotation.Inherited;6 importjava.lang.annotation.Retention;7 importjava.lang.annotation.RetentionPolicy;8 importjava.lang.annotation.Target;9

10 @Target({ElementType.METHOD,ElementType.TYPE})11 @Inherited12 @Documented13 @Retention(RetentionPolicy.RUNTIME)14 public @interfaceAnnotation_my {15

16 String name() default "张三";//defalt 表示默认值

17

18 String say() default "hello world";19

20 int age() default 21;21

22 }

接下来我们定义一个接口:

packagecom.java.annotation;

@Annotation_my//使用我们刚才定义的注解

public interfacePerson {

@Annotation_mypublic voidname();

@Annotation_mypublic voidsay();

@Annotation_mypublic voidage();

}

接口定义好了,我们就可以写接口的实现类了(接口不能实例化)

packagecom.java.annotation;

@Annotation_my

@SuppressWarnings("unused")public class Student implementsPerson {privateString name;

@Override

@Annotation_my(name="流氓公子") //赋值给name 默认的为张三//在定义注解时没有给定默认值时,在此处必须name赋初值

public voidname() {

}

@Override

@Annotation_my(say=" hello world !")public voidsay() {

}

@Override

@Annotation_my(age=20)public voidage() {

}

}

然后我们就编写一个测试类测试我们的注解

packagecom.java.annotation;importjava.lang.annotation.Annotation;importjava.lang.reflect.Field;importjava.lang.reflect.Method;public classText {

Annotation[] annotation= null;public static void main(String[] args) throwsClassNotFoundException {newText().getAnnotation();

}public void getAnnotation() throwsClassNotFoundException{

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());

}

}

}

}

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值