我已经为类定义了一个事务类来指定事务详细信息:
class Transaction
{
public:
Transaction(QString type, QDate date, int num, double price);
QString toString();
private:
QString m_Type; //HOLDS THE TYPE OF TRANSACTION: Sale or Purchase
QDate m_Date; //date of transaction
int m_NoOfItems; //num of items in transaction
double m_PricePerItem; //price per item
};
以及用于存储产品信息的产品类(m_Type包含"销售"或"购买"):
class Product
{
public:
Product(QString name, int num, double seprice, double suprice, QString sc);
void sell(int n); //need to add sale to QList<Transaction>
void restock(int n);
QString getSupplierCode() const;
void setProductCode(QString c);
QString getProductCode() const;
QList<Transaction> getTransactions() const;
QString toString();
void remvodeAll();
bool isExpired();
private:
QString m_Name;
int m_NoOfItems;
QString m_ProductCode;
double m_SellingPrice;
double m_SupplierPrice;
QString m_SupplierCode;
QList<Transaction> m_Transactions; //QList of class type Transaction
};
我的void Product::sell(int n)
如下:
void Product::sell(int n)
{
if(m_NoOfItems < n)
{
qDebug() << "Not enough items in stock.";
}
else
{
m_NoOfItems = m_NoOfItems - n;
m_Transactions.append(Transaction("Sale", QDate.currentDate(), n, m_SellingPrice));
}
}
这些类之间存在聚合。现在我需要做的就是每当我致电.sell()
时,我都需要向QList m_Transactions
添加销售,该销售类型为Transaction
,其中Transaction::m_Type = "sale"
。我能想到用现有函数执行此操作的唯一方法是调用Transaction
构造函数并传入值。但显然这不会起作用。我有什么想法可以解决这个问题吗?
答案 0 :(得分:2)
好的,首先,您需要做的是写:
m_Transactions.append(Transaction("Sale", QDate::currentDate(), n, m_SellingPrice));
请注意::
之后的QDate
,因为currentDate()
是一个静态函数。
我还发现在产品中保存交易有点奇怪。更好的设计是拥有一个可以存储它们的单独类。