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

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

© 韶山 高级黑马   /  2014-11-12 22:32  /  674 人查看  /  1 人回复  /   0 人收藏 转载请遵从CC协议 禁止商业使用本文

在ArrayList<Integer> list = new ArrayList<Integer>();中添加一个字符串类型的数据。

1 个回复

倒序浏览
需要用到反射
  1. public static void main(String[] args) throws Exception {
  2.                 ArrayList<Integer> list = new ArrayList<Integer>();
  3.                 String s = "abcdefg";
  4.                 Method method = list.getClass().getMethod("add",Object.class);
  5.                 method.invoke(list,s);
  6.                 System.out.println(list);
  7.         }
复制代码



回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马