欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

第五天之运算符重载提高_重载()运算符

程序员文章站 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");
}