HashMap集合在遍历显示源码学习

重写tostring,,方法

源码分析

public String toString() {
        Iterator> i = entrySet().iterator();
        if (! i.hasNext())
            return "{}";

        StringBuilder sb = new StringBuilder();
        sb.append('{');
        for (;;) {
            Entry e = i.next();
            K key = e.getKey();
            V value = e.getValue();
            sb.append(key   == this ? "(this Map)" : key);
            sb.append('=');
            sb.append(value == this ? "(this Map)" : value);
            if (! i.hasNext())
                return sb.append('}').toString();
            sb.append(',').append(' ');
        }
    }

转载于:https://blog.51cto.com/357712148/2308119

你可能感兴趣的:(HashMap集合在遍历显示源码学习)