4

我想在两个类之间创建一个双向关联。例如class Ahasclass B作为其私有属性和class Bhasclass A作为其私有属性。

我得到的错误主要是:

Error   323 error C2653: 'Account' : is not a class or namespace name   
Error   324 error C2143: syntax error : missing ';' before '{'

(我收到很多这样的错误)

我相信这些错误与我如何在 account.h 中包含 paymentMode.h 有关,反之亦然。我尝试评论其中一个课程中的一项内容,并且一切正常。请问如何消除此类错误,同时我仍然可以在 account 和 paymentMode 类之间进行双向关联?

谢谢!

附上我写的代码。

    //paymentMode.h

    #pragma once
    #ifndef _PAYMENTMODE_H
    #define _PAYMENTMODE_H

    #include <string>
    #include <iostream>
    #include <vector>
    #include "item.h"
    #include "account.h"

    using namespace std;

    class PaymentMode
    {
    private:
        string paymentModeName;
        double paymentModeThreshold;
        double paymentModeBalance; //how much has the user spent using this paymentMode;
        vector<Account*> payModeAcctList;

    public:
        PaymentMode(string);
        void pushItem(Item*);

        void addAcct(Account*);

        string getPaymentModeName();
        void setPaymentModeName(string);

        void setPaymentModeThreshold(double);
        double getPaymentModeThreshold();

        void setPaymentModeBal(double);
        double getPaymentModeBal();
        void updatePayModeBal(double);

        int findAccount(string);
        void deleteAccount(string);

    };

    #endif



              //account.h

#pragma once
#ifndef _ACCOUNT_H
#define _ACCOUNT_H

#include <string>
#include <iostream>
#include <vector>
#include "paymentMode.h"

using namespace std;

class Account
{
private:
    string accountName;
    //vector<PaymentMode*> acctPayModeList;
    double accountThreshold;
    double accountBalance; //how much has the user spent using this account.

public:
    Account(string);

    //void addPayMode(PaymentMode*);
    //int findPayMode(PaymentMode*);

    string getAccountName();
    void setAccountName(string);

    void setAccountThreshold(double);
    double getAccountThreshold();

    void setAccountBal(double);
    double getAccountBal();
    void updateAcctBal(double);

};

#endif
4

1 回答 1

8

您有一个循环包含依赖项,但在这种情况下,由于 A 类仅包含 B 类指针的容器,反之亦然,您可以使用前向声明,并将包含放在实现文件中。

所以,而不是

 #include "account.h"

采用

class Account;

不相关:不要放入using namespace std头文件,如果可能的话,不要放。有关该问题的更多信息,请参见此处

于 2013-03-10T15:40:18.750 回答