黑马程序员技术交流社区
标题:
Integer泛型Map中存储字符串
[打印本页]
作者:
pan1564335
时间:
2015-11-1 15:13
标题:
Integer泛型Map中存储字符串
Integer泛型Map中存储字符串 ?
作者:
pan1564335
时间:
2015-11-1 15:24
不好意思 做出来了
HashMap<Integer,Integer> hm = new HashMap<>();
hm.put(1, 1);
hm.put(2, 2);
Class clazz = hm.getClass();
Method m = clazz.getMethod("put", Object.class,Object.class);
m.invoke(hm, "a","b");
System.out.println(hm);
欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/)
黑马程序员IT技术论坛 X3.2