多平台统一管理软件接口,如何实现多平台统一管理软件接口
254
2023-01-11
Java注解与反射原理说明
一 点睛
注解若想发挥更大作用,还需借助反射http://机制之力。通过反射,可以取得一个方法上声明的注解的全部内容。
一般有两种需求:
1 取得方法中全部的注解,通过调用getAnnotations来实现。
2 判断操作是否是指定注解,通过调用getAnnotation来实现。
下面从源码角度来说明怎样获取这些注解信息。
二 源码导读——取得方法中全部的注解
public class AccessibleObject implements AnnotatedElement {
...
//取得全部Annotation
public Annotation[] getAnnotations() {
return getDeclaredAnnotations();
}
...
}
public final class Method extends Executable {
...
public Annotation[] getDeclaredAnnotations() {
//针对Method类,需要调用父类的getDeclaredAnnotations方法
return super.getDeclaredAnnotations();
}
...
}
//Method的父类Executable的getDeclaredAnnotations实现全部注解信息的获取
public abstract class Executable extends AccessibleObject
implements Member, GenericDeclaration {
...
public Annotation[] getDeclaredAnnotations() {
return AnnotationParser.toArray(declaredAnnotations());
}
...
}
三 源码导读——判断操作是否是指定注解
public final class Method extends Executable {
...
////取得指定Annotation
public
return super.getAnnotation(annotationClass);
}
...
}
public abstract class Executable extends AccessibleObject
implements Member, GenericDeclaration {
...
public
Objects.requireNonNull(annotationClass);
//获得指定注解类的信息
return annotationClass.cast(declaredAnnotations().get(annotationClass));
}
...
}
总结
以上就是这篇文章的全部内容了,希望本文的内容对大家的学习或者工作具有一定的参考学习价值,谢谢大家对我们的支持。如果你想了解更多相关内容请查看下面相关链接
版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。
发表评论
暂时没有评论,来抢沙发吧~