重载操作符

#include <iostream>

using namespace std;

class Person
{
	//  重载操作符: 加法      重载操作符就是一个函数,
public:
	void operator+(const Person& rhs)
	{
		cout << "执行了重载的加法操作:" << endl;
	}

};

int main()
{
	int a, b;
	a = 9;
	b = 10;
	cout << a + b << endl;
	Person p1, p2;
	p1 + p2;

	cout << "xiaocui" << endl;
	system("pause");
	return 0;
}

你可能感兴趣的:(重载操作符)