1

我有一个关于通告的问题,包括让我抓狂的:

主文件

#include "A.hpp"
#include "B.hpp"

int main()
{
    A a();
    B b();
    return 0;
}

A.hpp

#ifndef _CLASS_A
#define _CLASS_A

#include "B.hpp"
class A
{
    public: 
        B* b;
        struct A_t
        {
            int id;
        };
};
#endif

B.hpp

#ifndef _CLASS_B
#define _CLASS_B

#include "A.hpp"

class B
{
    class A;  //Ok, with that I can use the class A
    public: 
        int a;
        A* b;  // That work!
        A::A_t *aStruct; // Opss! that throw a compilation error.

};
#endif

问题是:¿如何在 B 类中使用 A_t 结构?

我试图添加一个前向声明,如:

struct  A::A_t;

但这显然确实有效。

4

1 回答 1

3

A.h用前向声明替换包含。

#ifndef _CLASS_A
#define _CLASS_A
class B;
class A
{
    public: 
        B* b;
        struct A_t
        {
            int id;
        };
};
#endif

另外,请注意

A a();
B b();

不会创建类的两个实例,但它们是函数声明。你要

A a;
B b;
于 2012-11-14T10:18:16.657 回答