天天看點

【Android性能優化】(一)使用SparseIntArray替換HashMap

一、SparseIntArray API

SparseIntArrays map integers to integers.  Unlike a normal array of integers, there can be gaps in the indices.  It is intended to be more memory efficient than using a HashMap to map Integers to Integers, both because it avoids auto-boxing keys and values

and its data structure doesn't rely on an extra entry object for each mapping.

Note that this container keeps its mappings in an array data structure, using a binary search to find keys.  The implementation is not intended to be appropriate for data structures that may contain large numbers of items.  It is generally slower than a

traditional HashMap, since lookups require a binary search and adds and removes require inserting and deleting entries in the array.  For containers holding up to hundreds of items, the performance difference is not significant, less than 50%.

Iterating over the keys using<code>keyAt(int)</code> with ascending values of the index will return the keys in ascending order, or the values corresponding to the keys in ascending order in the case of<code>valueAt(int)<code>.</code></code>

<code><code></code></code> 

<code><code>SparseArray是android裡為&lt;Interger,Object&gt;這樣的Hashmap而專門寫的class,目的是提高效率,其核心是折半查找函數(binarySearch)</code></code>

<code><code>二、源碼</code></code>

<code><code></code></code>

繼續閱讀