我试图让 A 班成为 B 班的朋友。
class B;
class A{
public:
void show(const B&); // ##1## but this one works fine
B ob;// error incomplete type
};
class B{
public:
int b;
B():b(1){}
friend class A;
};
所以我的问题为什么它是不完整的类型?我认为当我这样做时,class B
它就像一个函数的原型,它告诉编译器在代码的某处有一个定义。
同样在##1##上面的代码中,为什么这是可能的?