gpt4 book ai didi

c++ - 跨多个文件的好友功能

转载 作者:太空宇宙 更新时间:2023-11-04 11:36:37 25 4
gpt4 key购买 nike

您好,我正在学习运算符重载和友元函数。

我已经在 .h 文件中将 operator<< 函数声明为我类的友元,但我仍然无法从 .cpp 文件中的函数定义访问私有(private)成员变量

我的代码如下:

测试.h

class Test
{
private:
int size;
public:
friend ostream& operator<< (ostream &out, Test& test);
};

测试.cpp

#include "Test.h"
#include <iostream>

using namespace std;

ostream& operator<< (ostream& out, Test& test)
{
out << test.size; //member size is inaccessible!
}

尽管我已经将 operator<< 函数作为类(class)的友元,但显然无法访问大小。我用谷歌搜索了一下,没有找到任何东西,所以有人可以帮我吗?谢谢。

注意:如果我将类定义移动到 .cpp 文件,那么每个人都可以工作,所以我假设我的问题与多个文件有关。

最佳答案

在 C++ 中,声明的范围从上到下。因此,如果您首先包含 Test.h然后<iostream>好友声明有不知道类型std::ostream .

解决方法:

测试.h:

#include <iostream>
class Test
{
private:
int size;
public:
friend std::ostream& operator<< (std::ostream &out,const Test& test);
};

测试.cpp:

#include "Test.h"

std::ostream& operator<< (std::ostream& out,const Test& test)
{
out << test.size;
return (*out);
}

请注意 #include <iostream>已从 Test.cpp 移出至 Test.h和全局参数 operator <<采用常量 Test& test . const 使运算符为 rvalues 工作.

关于c++ - 跨多个文件的好友功能,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22860145/

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