jdk--Class

来源:互联网 发布:卖皮草的淘宝哪家好 编辑:程序博客网 时间:2024/06/07 11:11
1、getDeclared* 与get* 的区别:以getDeclaredMethods getMethods为例
getDeclaredMethods 返回自身类所有公用和私有方法,但不包括继承方法
getMethods 返回该类所有公用方法,包括继承类的公用方法


getDeclaredAnnotations 返回直接存在于此元素上所有注解,忽略继承的注解
getAnnotations 返回所有注解,包括继承的注解