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

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

提示: 该帖被管理员或版主屏蔽

7 个回复

倒序浏览
谢谢分享,很有用,我也要面试了。
回复 使用道具 举报
能说说你后面问答题的答案吗?
回复 使用道具 举报
shdosh 发表于 2015-8-27 21:39
能说说你后面问答题的答案吗?

通过反射的方式拿到collection接口的add(object)方法
  1. public class Test3 {

  2.         public static void main(String[] args)throws Exception {
  3.                 ArrayList<Integer> list = new ArrayList<Integer>();
  4.                
  5.                 Method m = list.getClass().getMethod("add", Object.class);
  6.                 m.invoke(list, "String");
  7.                
  8.                 System.out.println(list.get(0));
  9.         }

  10. }
复制代码
回复 使用道具 举报
同学,能把你的东西私聊给我吗?
QQ569189953
你的东西被屏蔽了,
谢谢学长了
回复 使用道具 举报
我来了 来自手机 中级黑马 2015-8-28 12:40:30
地板
还没有学到,看起来好复杂,看不懂呢
回复 使用道具 举报
啊、、、、我竟然没有看到、、、想哭的心都有。。。。
回复 使用道具 举报
被屏了

158803629@qq.com     谢谢
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马