为了账号安全,请及时绑定邮箱和手机立即绑定

为什么老是提示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)                      这里也有

 }


正在回答

1 回答

你不觉得你少了2个大括号吗?

0 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

为什么老是提示Syntax error, insert "}" to complete ClassBody

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信