本帖最后由 zhangjinyu1991 于 2013-2-20 12:47 编辑
首先你查找Map接口的源码,你看里面全是方法,你要关注的是put()方法,你去找实现了Map接口的实现类,比如HashMap类
好,找到HashMap类的put()方法,找找看,一下就是:- public V put(K key, V value) {
- if (key == null)
- return putForNullKey(value);
- int hash = hash(key);
- int i = indexFor(hash, table.length);
- for (Entry<K,V> e = table[i]; e != null; e = e.next) {
- Object k;
- if (e.hash == hash && ((k = e.key) == key || key.equals(k))) { // 帅哥,看这里,对Key进行比较了哦
- V oldValue = e.value;
- e.value = value;
- e.recordAccess(this);
- return oldValue;
- }
- }
- modCount++;
- addEntry(hash, key, value, i);
- return null;
- }
复制代码 |