0
#include "foodservice.h"
#include <iostream>
using namespace std;

int main() {
  Inventory Master;
  bool flag;
  Customer Bob("Bob", 12345, 100.00 );
  Customer Joe("Joe", 56789, 50.00 );
  Customer Arjun("Arjun", 98765, 00.01 );
  Customer Randy("Randy", 54689, 30.28);
  Customer Mark("Mark", 76598, 15.18);


  Master.firststock( "inventory.txt" );
  vector<Food> temp = Master._Inv;
  for(unsigned int i=0; i<temp.size(); i++ ) {
    cout << temp[i].name << " " << temp[i].quant << " " << temp[i].price << endl;
  }

  flag = Bob.addCart( "Apple" , 10,  &Master._Inv );
  Bob.report();
  flag = Bob.addCart( "Oranges", 2, &Master._Inv );
  flag = Bob.removeCart( "Apple", 3, &Master._Inv );
  flag = Arjun.addCart( "Apple", 1, &Master._Inv );
  flag = Bob.checkout(&Master._Inv);
  flag = Arjun.checkout(&Master._Inv);
  Master.summary();*/



  system("pause");

}

ここに私のヘッダーファイルの一部があります:

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


The error i am getting is: cannot convert parameter 3 from 'std::vector<_Ty> *' to 'Inventory *'
1>          with
1>          [
1>              _Ty=Food
1>          ]
1>          Types pointed to are unrelated; conversion requires reinterpret_cast, C-style cast or function-style cast

助けていただければ幸いです。&Master._Inv を使用しているときにエラーが表示されます。_Inv は、ヘッダーのどこかで宣言したが含まれていない食品のベクトルです。ただし、問題はポインター &Master にあります.... *Master._Inv も試しましたが、どちらも機能しませんでした。

4

2 に答える 2

3

エラーメッセージは非常に簡単です。 addCartremoveCart、およびcheckoutすべては、へのポインターをInventoryパラメーターとして受け取ります。しかし、あなたの引数&Master._Invはへのポインタstd::vector<Food>です。多分あなたはただのことを意味しました&Masterか?

于 2012-08-04T04:26:34.707 に答える
2

Customer::addCart() の 3 番目のパラメーターは、Inventory オブジェクトへのポインターです。&Master を渡してみてください。

于 2012-08-04T04:26:46.233 に答える