码迷,mamicode.com
首页 > 其他好文 > 详细

字节码对象功能

时间:2020-06-21 12:00:20      阅读:46      评论:0      收藏:0      [点我收藏+]

标签:字节码   ons   getname   tde   declare   str   parameter   pre   对象   

Class对象功能:
* 获取功能:
1. 获取成员变量们
* Field[] getFields()
* Field getField(String name)

* Field[] getDeclaredFields()
* Field getDeclaredField(String name)
2. 获取构造方法们
* Constructor<?>[] getConstructors()
* Constructor<T> getConstructor(类<?>... parameterTypes)

* Constructor<T> getDeclaredConstructor(类<?>... parameterTypes)
* Constructor<?>[] getDeclaredConstructors()
3. 获取成员方法们:
* Method[] getMethods()
* Method getMethod(String name, 类<?>... parameterTypes)

* Method[] getDeclaredMethods()
* Method getDeclaredMethod(String name, 类<?>... parameterTypes)

4. 获取类名
* String getName()

字节码对象功能

标签:字节码   ons   getname   tde   declare   str   parameter   pre   对象   

原文地址:https://www.cnblogs.com/resort-033/p/13171553.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!