私は夏のOOクラスの宿題をしていますが、2つのクラスを書く必要があります。1つはと呼ばれSale
、もう1つはと呼ばれRegister
ます。私は自分のSale
クラスを書きました。これが.h
ファイルです:
enum ItemType {BOOK, DVD, SOFTWARE, CREDIT};
class Sale
{
public:
Sale(); // default constructor,
// sets numerical member data to 0
void MakeSale(ItemType x, double amt);
ItemType Item(); // Returns the type of item in the sale
double Price(); // Returns the price of the sale
double Tax(); // Returns the amount of tax on the sale
double Total(); // Returns the total price of the sale
void Display(); // outputs sale info
private:
double price; // price of item or amount of credit
double tax; // amount of sales tax
double total; // final price once tax is added in.
ItemType item; // transaction type
};
クラスの場合、メンバーデータにオブジェクトRegister
の動的配列を含める必要があります。Sale
ベクトルクラスは使用できません。これはどのように行われますか?
これが私の「登録」です''.h '
class Register{
public:
Register(int ident, int amount);
~Register();
int GetID(){return identification;}
int GetAmount(){return amountMoney;}
void RingUpSale(ItemType item, int basePrice);
void ShowLast();
void ShowAll();
void Cancel();
int SalesTax(int n);
private:
int identification;
int amountMoney;
};