gpt4 book ai didi

c++ - 友元函数 C++

转载 作者:行者123 更新时间:2023-11-30 01:19:45 25 4
gpt4 key购买 nike

为什么这行不通?

我在我的代码中使用了友好的函数,但是有一个错误,所以我找不到它。请帮忙。

#include<iostream>
#include<cstdlib>
using namespace std;
class Circle{
private:
int x;
public:
Circle(int x1=5){
x=x1;
friend std:ostream & operator<<(const Circle & c, std::ostream & os)
{
return os<<c.x
}
}
};
int main()
{
Circle s;
cout<< s;
system("pause");
return 0;
}

最佳答案

四个问题:

  1. 您已经在构造函数中定义了友元函数。把它移到外面,让它自己发挥作用。

  2. 替换std:ostreamstd::ostream

  3. 交换参数的顺序。

  4. return os<<c.x后面加一个分号

最终结果:

class Circle{
private:
int x;
public:
Circle(int x1=5){
x=x1;
}
friend std::ostream & operator<<(std::ostream & os, const Circle & c)
{
return os<<c.x;
}
};

关于c++ - 友元函数 C++,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20445096/

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