问答详情
源自:2-9 如何保证不添加重复商品进购物车

在这章节中重写 equals 的作用,是什么,在哪里有掉用过?

提个问题: item实体类中重写的的equals方法不知道哪里有掉用过,,,

提问者:Angular_Dracula 2016-03-03 16:24

个回答

  • 萌萌哒猫头鹰
    2016-03-03 22:08:11
    已采纳

    public boolean addGoodsInCart(items item, int number) {
    		if (goods.containsKey(item)) {
    			goods.put(item, goods.get(item) + number);
    		} else {
    			goods.put(item, number);
    		}
    		calTotalPrice();
    		return true;
    	}

    map和set集合比较是否包含某一个元素,需要重写equals和hashcode方法。

    list集合比较是否包含某一个元素,需要重写equals方法。

    建议再好好学习下泛型,基础知识不够牢固。

    如果不重新写,goods会把两个同样的item给添加进来。因为这两个item虽然属性相同但其实是不同的对象。

  • iMcLaren
    2016-05-12 17:03:31

        final Node<K,V> getNode(int hash, Object key) {
            Node<K,V>[] tab; Node<K,V> first, e; int n; K k;
            if ((tab = table) != null && (n = tab.length) > 0 &&
                (first = tab[(n - 1) & hash]) != null) {
                if (first.hash == hash && // always check first node
                    ((k = first.key) == key || (key != null && key.equals(k))))
                    return first;
                if ((e = first.next) != null) {
                    if (first instanceof TreeNode)
                        return ((TreeNode<K,V>)first).getTreeNode(hash, key);
                    do {
                        if (e.hash == hash &&
                            ((k = e.key) == key || (key != null && key.equals(k))))
                            return e;
                    } while ((e = e.next) != null);
                }
            }
            return null;
        }
    
        /**
         * Returns <tt>true</tt> if this map contains a mapping for the
         * specified key.
         *
         * @param   key   The key whose presence in this map is to be tested
         * @return <tt>true</tt> if this map contains a mapping for the specified
         * key.
         */
        public boolean containsKey(Object key) {
            return getNode(hash(key), key) != null;
        }