`
miaodezhi
  • 浏览: 8985 次
  • 性别: Icon_minigender_1
  • 来自: 深圳
最近访客 更多访客>>
文章分类
社区版块
存档分类
最新评论

JDK里面这样子写代码是否有深意啊?

 
阅读更多
public V get(Object key) {
Iterator<Entry<K,V>> i = entrySet().iterator();
if (key==null) {
    while (i.hasNext()) {
Entry<K,V> e = i.next();
if (e.getKey()==null)
    return e.getValue();
    }
} else {
    while (i.hasNext()) {
Entry<K,V> e = i.next();
if (key.equals(e.getKey()))
    return e.getValue();
    }
}
return null;
    }
今天无意中在查看java.util.AbstractMap<K,V>这个类时看到上面这段代码,我的问题就是为什么不把key==null的判断写到while循环里面写成:
         public V get(Object key) {
    Iterator<Entry<K,V>> i = entrySet().iterator();
        while (i.hasNext()) {
                 Entry<K,V> e = i.next();
                 if (key==null) {
                        if (e.getKey()==null)  return e.getValue();
                 } else{
                    if (key.equals(e.getKey())) return e.getValue();
                 }
            }
                return null;
}
或者写成:
public V get(Object key) {
    Iterator<Entry<K,V>> i = entrySet().iterator();
        while (i.hasNext()) {
            Entry<K,V> e = i.next();
            if (e.getKey()==key || key.equals(e.getKey()))
                return e.getValue();
        }
        return null;
}
我一向比较崇拜JDK的代码,难道他们这样子写有什么深意,比如效率考虑???
分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics