這裏餐館帳單是我的代碼:如何計算每個表
Order類
public class Order {
private int orderId;
private int tableId;
private int quantity;
private String name;
private int price;
}
構造
public Order(int o, int t, String name, int q, int price) {
orderId = o;
tableId = t;
this.name = name;
quantity = q;
this.price= price;
}
OrderList類
public class OrderList {
private ArrayList<Order> orderList;
public OrderList() {
orderList = new ArrayList<Order>();
}
}
填充方法
Order o = new Order(15, 3, "Paan Kiwi", 1, 10.00);
Order o = new Order(16, 3, "Pasta", 3, 18.00);
我怎樣寫,從一個特定的表計算所有訂單的總價格的方法?
忽略語法錯誤,請:)
你的問題不是很清楚。 *每餐每餐總價* *你的意思是來自單個表格的所有訂單的總數? – Redtama