导航

2015年6月12日

摘要: 今天来看下HashMap源码,先从put方法入手:public V put(K key, V value) { if (table == EMPTY_TABLE) { inflateTable(threshold); } if (k... 阅读全文

posted @ 2015-06-12 16:35 一个博客 阅读(155) 评论(0) 推荐(0)