C++类和对象-C++运算符重载->加号运算符重载、左移运算符重载、递增运算符重载、赋值运算符重载、关系运算符重载、函数调用运算符重载
#includeusingnamespacestd;//加号运算符重载classPerson{public:Person(){};Person(inta,intb){this->m_A=a;this->m_B=b;}//1.成员函数实现+号运算符重载Personoperator+(constPerson&p){Persontemp;temp.m_A=this->m_A+p.m_A;temp.m_B