运算符重载概念:
对已有的运算符进行重新定义,赋予其另一种功能,以适应不同的数据类型
1.加号运算符重载
作用:实现两个自定义数据类型相加的相加
#include <iostream>
using namespace std;
//运算符重载:对已有的运算符重新进行定义,赋予其另一种功能,已适应不同的数据类型
//自己写成员函数,实现两个对象相加属性后返回新的对象
//加号运算符重载
class Person
{
public:
1、成员函数重载+号
//Person operator+(Person& p)
//{
// Person tmp;
// tmp.m_A = this->m_A + p.m_A;
// tmp.m_B = this->m_B + p.m_B;
// return tmp;
//}
int m_A;
int m_B;
};
Person operator+(Person& p1, Person& p2)
{
Person tmp;
tmp.m_A = p1.m_A + p2.m_A;
tmp.m_B = p1.m_B + p2.m_B;
return tmp;
}
Person operator+(Person& p1, int num)
{
Person tmp;
tmp.m_A = p1.m_A + num;
tmp.m_B = p1.m_B + num;
return tmp;
}
void test01()
{
Person p1;
p1.m_A = 10;
p1.m_B = 10;
Person p2;
p2.m_A = 10;
p2.m_B = 10;