为什么老是提示Syntax error, insert "}" to complete ClassBody
package entity;
import java.util.HashMap;
//购物车
public class Cart {
//购买商品的集合
private HashMap<Items,Integer> goods;
//购物车的总金额
private double totalPrice;
//构造方法
//c初始化属性
public Cart()
{
goods = new HashMap<Items,Integer>();
totalPrice = 0.0;
}
public HashMap<Items, Integer> getGoods()
{
return goods;
}
public void setGoods(HashMap<Items, Integer> goods)
{
this.goods = goods;
}
public double getTotalPrice()
{
return totalPrice;
}
public void setTotalPrice(double totalPrice)
{
this.totalPrice = totalPrice;
} 这里有提示
//添加商品进购物车的方法
public boolean addGoodsInCart(Items item ,int number) 这里也有
}