我在寫一個方法來計算大學項目的一些訂單總數時遇到了困難。 Eclipse說,有一個錯誤,只詳細說明+是一個無效的AssignmentOperator。向對方添加雙打
一些細節:
- 有沒有隱私問題。
- 數量是一個int。
- getPrice()返回一個double。
- 總是雙
這也可能是很簡單的東西,但正因爲如此,一個答案摸索是相當困難的。
public double calculateTotal(){
for(OrderItem currentItem:items){
for(int i=0;i<currentItem.quantity;i++){
total+currentItem.product.getPrice();
}
}
return total;
}
+1是最快的:) – 2012-04-10 12:12:01
好了,這樣的作品,非常感謝! – gideonparanoid 2012-04-10 12:13:25
是的,我已經在構造函數中初始化變量,歡呼。 – gideonparanoid 2012-04-10 12:47:57