类的定义 public class SparseArray<E> implements Cloneable {} 将int映射为对象,比HashMap更节省内存。一方面是避免了对key的自动装箱;另外一个方面是它的键值对不依赖于外部的实体对象来保存键值映射而HashMap需要额外的存储空间来保存键值对之间的映射关系。 该容器将映射存储在一个数组数据结构中,使用二分查找找到对应的key.这
概述 Google推荐新的数据结构SparseArray。 SparseArray类上有一段注释: SparseArrays map integers to Objects. Unlike a normal array of Objects,there can be gaps in the indices. It is intended to be more memory efficien