我有一个关于通告的问题,包括让我抓狂的:
主文件
#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;
但这显然确实有效。