码迷,mamicode.com
首页 > 编程语言 > 详细

java反射机制,通过类名获取对象,通过方法名和参数调

时间:2014-08-02 15:27:53      阅读:210      评论:0      收藏:0      [点我收藏+]

标签:style   color   java   strong   io   for   ar   new   

try {
//得到对象
Class c = Class.forName("完整类名");
Object yourObj = c.newInstance();
//得到方法
Method methlist[] = cls.getDeclaredMethods();
for (int i = 0; i < methlist.length; i++) {
Method m = methlist[i];
}
//获取到方法对象,假设方法的参数是一个int,method名为setAge
Method sAge = c.getMethod("setAge", new Class[] {int.class});
//获得参数Object
Object[] arguments = new Object[] { new Integer(37)};
//执行方法
sAge.invoke(yourObj , arguments);
} catch (Exception e) {
}  

java反射机制,通过类名获取对象,通过方法名和参数调,布布扣,bubuko.com

java反射机制,通过类名获取对象,通过方法名和参数调

标签:style   color   java   strong   io   for   ar   new   

原文地址:http://www.cnblogs.com/azhqiang/p/3886963.html

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