标签:collect col 技术 param cal leave div com dde
/** * Adds the specified element to this set if it is not already present. * More formally, adds the specified element <tt>e</tt> to this set if * this set contains no element <tt>e2</tt> such that * <tt>(e==null ? e2==null : e.equals(e2))</tt>. * If this set already contains the element, the call leaves the set * unchanged and returns <tt>false</tt>. * * @param e element to be added to this set * @return <tt>true</tt> if this set did not already contain the specified * element */ public boolean add(E e) { return map.put(e, PRESENT)==null; // 重复返回false }
Collection Set&HashSet&TreeSet(HashMap实现,去重特性)
标签:collect col 技术 param cal leave div com dde
原文地址:https://www.cnblogs.com/qishuai/p/9053490.html