C++ ostream <<运算符重载编译不通过是怎么回事?
编译器为code::blocks编译提示为:|15|error:'std::iostream&fuck::operator<<(std::iostream&,constf...
编译器为code::blocks
编译提示为:
|15|error: 'std::iostream& fuck::operator<<(std::iostream&, const fuck&)' must take exactly one argument|
||=== Build finished: 1 errors, 0 warnings ===|
#include
using namespace std;
class fuck
{
int x;
public:
fuck(int x)
{
this->x=x;
}
friend iostream& operator<<(iostream & out,const fuck & f);
};
iostream& fuck::operator<<(iostream & out,const fuck & f)
{
return out<<f.x;
}
int main()
{
return 0;
} 展开
编译提示为:
|15|error: 'std::iostream& fuck::operator<<(std::iostream&, const fuck&)' must take exactly one argument|
||=== Build finished: 1 errors, 0 warnings ===|
#include
using namespace std;
class fuck
{
int x;
public:
fuck(int x)
{
this->x=x;
}
friend iostream& operator<<(iostream & out,const fuck & f);
};
iostream& fuck::operator<<(iostream & out,const fuck & f)
{
return out<<f.x;
}
int main()
{
return 0;
} 展开
1个回答
展开全部
把外面operator的定义把fuck:去掉,因为它是fuck类的友元函数而不是成员函数。友元函数是公有函数。
iostream& operator<<(iostream & out,const fuck & f)
{
out<<f.x;
return out;
}
运算符用于执行程序代码运算,会针对一个以上操作数项目来进行运算。例如:2+3,其操作数是2和3,而运算符则是"+"。在vb2005中运算符大致可以分为5种类型:算术运算符、连接运算符、关系运算符、赋值运算符和逻辑运算符。
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询