我基本上只是想知道制作 HashMaps 使用了多少内存。
在获取时制作一个类型的 HashMap 并进行转换会更好Object
吗?还是可以为我要存储的不同类型制作许多 HashMap?
例子:
HashMap<Integer,Type1> map1;
HashMap<Integer,Type2> map2;
HashMap<Integer,Type3> map3;
对比
HashMap<Integer, Object> map;
// And getting it by
(Type1)map.get(Integer); //or (Type2), etc