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

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

© a6511631 高级黑马   /  2014-8-17 20:53  /  1228 人查看  /  3 人回复  /   0 人收藏 转载请遵从CC协议 禁止商业使用本文

本帖最后由 a6511631 于 2014-8-20 11:47 编辑

加了泛型的List集合要怎么样才能存指定泛型类型以外的类型呢求具体过程求示例。

3 个回复

倒序浏览
不知下面的代码是否能解决楼主疑问:
  1. public static void main(String[] args) {
  2.                 List<String> list1 = new ArrayList<String>();
  3.                 list1.add("hello world");
  4.                
  5.                 List list2 = list1;
  6.                 List<Integer> list3 = list2;
  7.                 list3.add(99);
  8.                
  9.                 System.out.println(list1); //[hello world, 99]
  10.         }
复制代码



回复 使用道具 举报
  1. import java.lang.reflect.Method;
  2. import java.util.ArrayList;

  3. public class DemoTest
  4. {
  5.         public static void main(String[] args) throws Exception
  6.         {
  7.                 ArrayList<Integer> list = new ArrayList<Integer>();
  8.                 list.add(231);//开始只能+整形
  9.                 System.out.println(list);
  10.                
  11.                
  12.                 Method addclass = list.getClass().getMethod("add", Object.class);
  13.                 addclass.invoke(list, "哈哈");
  14.                
  15.                 System.out.println(list);       
  16.         }
复制代码


希望能帮主你

点评

正解  发表于 2014-8-20 11:47
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马