第五天之运算符重载提高_重载()运算符
程序员文章站
2022-07-04 18:51:34
...
运算符的结合性
重载()运算符
#include <iostream>
using namespace std;
class F {
public:
int operator()(int a, int b)
{
return a*a + b*b;
}
private:
};
class F2 {
public:
int MemFunc(int a, int b)
{
return a*a + b*b;
}
private:
};
void main()
{
F f;
//int operator()(int a, int b);
f(2, 4); //括号重载
F2 f2;
f2.MemFunc(2, 4); //函数调用
system("pause");
}