我有一個類是抽象的,它也有4個子類,我想知道如何創建一個對象數組,所以當程序運行時,它會詢問用戶是否要放置另一個訂單並存儲對象數組中的第一個順序等等,直到用戶不想再下訂單。如何爲抽象類創建對象數組?
double TP = b1.getTotal() + s1.getTotal() + d1.getTotal() + dr.getTotal();
System.out.print("Would you like to place another order?");
user = scan.nextInt();
scan.nextLine();
}
}while(user == 1);
//這裏就是我想創建對象數組和這些變量存儲在其中,
b1.display();
s1.display();
d1.display();
dr.display();
這裏是抽象類
import java.util.*;
public abstract class Order
{
protected String meal;
protected double price, total;
protected int amount;
public Order()
{
setItem(meal);
}
public String getItem()
{
return meal;
}
public void setItem(String i)
{
meal = i;
}
public double getPrice()
{
return price;
}
public void setPrice(double p)
{
price = p;
}
public int getAmt()
{
return amount;
}
public void setAmt(int a)
{
amount = a;
}
public double getTotal()
{
return total;
}
public abstract void display();
public abstract void setTotal(double p, int a);
}
請給你的代碼一些格式,以便它更具可讀性。此外,請選擇解決您問題的代碼,並且不要粘貼您的整個程序 –
「抽象」類在哪裏? – Dave
更新了我原來的帖子 – user1067332