问答详情
源自:2-7 购物车类的设计

计算总价的方法不对吧

看错了

提问者:_余生 2018-05-30 20:57

个回答

  • ATMYBEST
    2018-08-07 11:10:18


    public double calTotalPrice() {

    double totalPrice = 0.0;

    for(Entry<Items, Integer> en:goods.entrySet()) {

    totalPrice = totalPrice + en.getKey().getPrice() * en.getValue();

    }

    this.setTotalPrice(totalPrice);

    return totalPrice;

    }