gpt4 book ai didi

c++ - 两个类可以使用 C++ 互相看到吗?

转载 作者:IT老高 更新时间:2023-10-28 21:43:50 27 4
gpt4 key购买 nike

所以我有一个 A 类,我想在其中调用一些 B 类函数。所以我包括“b.h”。但是,在 B 类中,我想调用 A 类函数。如果我包含“a.h”,它最终会进入无限循环,对吗?我该怎么办?

最佳答案

仅将成员函数声明放在头文件 (.h) 中,并将成员函数定义放在实现 (.cpp) 文件中。那么你的头文件不需要相互包含,你可以在任一实现文件中包含两个头文件。

如果您还需要在成员签名中引用其他类,您可以使用前向声明:

class A;

这使您可以使用指针和引用类型(A*A&),但不能使用 A 本身。它也不允许您调用成员。

例子:

// a.h
struct B; // forward declaration

struct A {
void foo(B* b); // pointers and references to forward-declared classes are ok
};


// b.h
struct A; // forward declaration

struct B {
void bar(A& a); // pointers and references to forward-declared classes are ok
};


// a.cpp
#include "a.h"
#include "b.h"

void A::foo(B* b) {
b->bar(*this); // full declaration of B visible, ok to call members now
}


// b.cpp
#include "a.h"
#include "b.h"

void B::bar(A& a) {
a.foo(this); // full declaration of A visible, ok to call members now
}

关于c++ - 两个类可以使用 C++ 互相看到吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1837165/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com