0

这是我的主要内容:

int main() {
  Inventory Master;
  bool flag;
  Customer Bob("Bob", "CreditCard.txt");
  Customer Joe("Joe", "CreditCard.txt" );



  Master.firststock( "inventory.txt" );
  vector<Food> temp = Master._Inv;
  cout <<"Hi, What would you like to buy today?" << endl;
  for(unsigned int i=0; i<temp.size(); i++ ) {
    cout << temp[i].name << " " << temp[i].quant << " " << temp[i].price << endl;
  }

  cout <<"\n";
  Food Apple("Apples", .99, 10);
  Food Orange("Oranges", .99, 10);
  Food Chip("Chips", 3.00, 10);

  cout <<"\nHi Bob" << endl;
  flag = Bob.addCart(Apple, 7, &Master);
  cout <<"Bob's total purchases are Currently: \n";
  Bob.report();
  flag = Bob.addCart(Orange, 2, &Master);
  flag = Bob.addCart(Chip, 2, &Master);
  Bob.report();
  flag = Bob.removeCart();
   Bob.report();
  cout <<"Bob, ";
  flag = Bob.checkout(&Master);

这是我为从矢量_Cart 中移除食物而实施的以下操作:

bool Customer::removeCart() {
  bool flag;
  int q = 0;
  unsigned int i=0;
  string remove;

  cout << "\nWhat would you like to remove and how much would you like to remove?" << endl;
  cin >> remove >> q;
 for (i =0; i < _Cart.size(); i++) {
  if(remove == _Cart[i].name) {
      if (q >= 0) {
    _Cart[i].quant -= q;
    //inv->_Inv[i].quant += q;
    cout <<"\nYou removed " << q << " " << remove <<" In your cart\n" << endl;
    return true;
      }
      if  (q < 0) {
          cout << "Invalid number of " << remove << " being removed.\n" << endl;
          return true;
      }
  }
  else {      
  try {
    throw remove;
}

  catch (string param) {
    cout << "\n" << remove << " doesn't exist in your cart\n" << endl;
        }

        return true;
    }
 }

我的标题包含函数 removeCart:

class Customer {
  public:

   Customer(string n, string fileName);
    ~Customer() { _Cart.clear(); };
    bool addCart(Food f, int q, Inventory* inv);
    bool removeCart();
    void report(); 
    bool checkout(Inventory* inv); 
  protected:
    string remove;
    string name;
    int q;
    int card;
    double balance;
    CreditCard _CC(int card,double balance);
    vector<Food> _Cart;
};

现在由于某种原因,当我调用 removeCart 时,输入“Apples”有效,但我注意到我制作了一个名为 Apple 的食物对象,所以不知道为什么输入“Apples”而不是“Apple”可以删除。此外,当我尝试“Orange”或“Chip”时,会显示异常,但正如您在 main 中看到的那样,我将 Chip 和 Orange 添加到 Bob 的购物车中。我很感激帮助。

4

2 回答 2

0

您已经在代码中的某处声明了一个对象。Apple

然后,您已经实例化了一个Apple类的实例并将Apple::name成员设置'Apples'为字符串。

您不是将输入类名进行比较,而是将输入与成员数据进行Apple比较。

于 2012-08-07T05:59:31.030 回答
0

您正在制作一个名为 Apple 的对象,其中包含一个 std::string 类型的成员,其中包含字符“Apples”。只有您的编译器知道您调用了一个对象 Apple,但您的程序将字符串“Apples”与您的输入进行比较。与橙色和芯片相同。

于 2012-08-07T04:23:03.530 回答