SparseArray

Posted 吴添龙

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了SparseArray相关的知识,希望对你有一定的参考价值。

Recommended data-structures:

  • ArrayMap<K,V> in place of HashMap<K,V>
  • ArraySet<K,V> in place of HashSet<K,V>
  • SparseArray<V> in place of HashMap<Integer,V>
  • SparseBooleanArray in place of HashMap<Integer,Boolean>
  • SparseIntArray in place of HashMap<Integer,Integer>
  • SparseLongArray in place of HashMap<Integer,Long>
  • LongSparseArray<V> in place of HashMap<Long,V>

以上是关于SparseArray的主要内容,如果未能解决你的问题,请参考以下文章