所以我正在为我的OO课做这个项目。我们需要创建两个类,Sale和Register。我写了Sale和大部分注册。我唯一的问题(目前)是我似乎无法从我的注册类访问销售对象的私有成员数据。
销售标题:
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 (described below)
private:
double price; // price of item or amount of credit
double tax; // amount of sales tax (does not apply to credit)
double total; // final price once tax is added in.
ItemType item; // transaction type
};
注册标题:
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;
int listSize = 5;
int numSales;
Sale* sale;
};
所以我现在正在尝试编写RingUpSale()
函数,但似乎无法访问私有字段。这是我的代码:
void Register::RingUpSale(ItemType item, int basePrice){
if(numSales == listSize){
listSize += 5;
Sale * tempArray = new Sale[listSize];
memcpy(tempArray, sale, numSales * sizeof(Sale));
delete [] sale;
sale = tempArray;
}
sale[numSales]->item = item; //this works for some reason
sale[numSales]->total = basePrice; // this doesn't
if(item == 'CREDIT'){
sale[numSales]->tax = 0; // and this doesn't
sale[numSales]->total = basePrice; // and neither does this
amountMoney -= basePrice;
}
++numSales;
}
尝试设置销售对象的总字段和税字段在Eclipse中出错:
"Field 'total' cannot be resolved"
我不确定为什么会这样或如何解决它。任何帮助,将不胜感激。是的,我已在必要时添加了#include "sale.h"
和#include "register.h"
。
答案 0 :(得分:0)
在您的上一个代码段中,您说if(item == 'CREDIT')
但出于多种原因这是错误的。单引号仅用于单个字符。 'item'是'ItemType'类型,它是一个枚举。您应该使用if(item == CREDIT)
,因为CREDIT被定义为枚举元素。否则该陈述会导致与您希望它做的事情无关的行为。
我认为最好保持对构造函数的初始化(参见listSize)。
您无法从课堂外访问私人会员。您应该将代码的某些部分外部化到另一个类,使公共函数可用,如果需要可以使用参数进行处理,或者制作朋友类(我认为在大多数情况下这是不赞成的,因为它是设计糟糕的标志(又名“我不知道如何做X所以我求助于Y“)。
如果您需要更多帮助,我明天可以为您提供一些代码,今天有点晚了。