我在使用 C++ 中的友元函数时遇到了一些困难,但我怀疑这更多是我在使用预处理器指令和#include 时遇到的问题的症状。
这是我正在做的一个愚蠢的例子。五个文件:bobby.h、bobby.cpp、billy.h、billy.cpp 和 main.cpp。Billy 有一个名为 ReceiveMoney 的受保护函数。Bobby 有一个名为 bank 的函数,它调用 Billy 的 ReceiveMoney。也就是说,每次鲍比去银行,他都会和比利分钱。
比利.h
#ifndef BILLY_H
#define BILLY_H
#include "bobby.h"
class Billy
{
friend void Bobby::Bank(int, Billy &);
public:
Billy();
protected:
void ReceiveMoney(int inc);
private:
int money;
};
#endif
比利.cpp
#include "billy.h"
Billy::Billy()
{
money = 0;
}
void Billy::ReceiveMoney(int inc)
{
money+=inc;
}
鲍比.h
#ifndef BOBBY_H
#define BOBBY_H
#include "billy.h"
class Bobby
{
public:
Bobby();
void Bank(int amount, Billy & b);
protected:
int money;
};
#endif
鲍比.cpp
#include "bobby.h"
Bobby::Bobby()
{
money = 0;
}
void Bobby::Bank(int amount, Billy & b)
{
b.ReceiveMoney(amount/2);
}
主文件
#include "billy.h"
#include "bobby.h"
int main()
{
Bobby bo;
Billy bi;
bo.Bank(150, bi);
return 0;
}
我收到大量错误,通常是错误 C2653: 'Bobby' : is not a class or namespace name or error C2653: 'Billy' : is not a class or namespace name
我在 VS0 的一个空控制台项目中执行此操作