A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

© 陈嘉宾 中级黑马   /  2012-6-10 21:31  /  1301 人查看  /  2 人回复  /   0 人收藏 转载请遵从CC协议 禁止商业使用本文

本帖最后由 陈嘉宾 于 2012-6-10 22:56 编辑

编译时为什么是找不到符号啊。。
import java.util.*;
import java.lang.reflect.Method;
class fanshe
{
        public static void main(String[] args) throws Exception
        {
                ArrayList<Integer>list=new ArrayList<Integer>();
               
                String a="java";
               
                Method method=list.getMethod("add",Object.class);
                        method.invoke(list,"JAVA");
                        System.out.println(list);

               
        }
}

评分

参与人数 1技术分 +1 收起 理由
赵志勇 + 1

查看全部评分

2 个回复

倒序浏览
我都不知道你list是怎么点出getMethod.   你要用ArrayList的字节码去获取它里面的方法啊。

Method method = list.getClass().getMethod("add", Object.class);
method.invoke(list, "abc");
System.out.println(list);

评分

参与人数 1技术分 +1 收起 理由
黄奕豪 + 1 赞一个!

查看全部评分

回复 使用道具 举报
哦哦。。看到了。。要先搞到字节码。。
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马