C++,运算符的重载,关系运算符的重载,等于和不等于。

#include
using namespace std;

//关系运算符重载

class Person
{
public:
    //构造函数,传参,赋值
    Person(string name, int age) {
        this->m_name = name;
        this->m_age = age;
    };

    //重载==
    bool operator==(Person & p){
        if (this->m_name == p.m_name && this->m_age == p.m_age) {
            return true;
        }
        else {
            return false;
        }
    }
    //重载!=
    bool operator!=(Person& p) {
        if (this->m_name == p.m_name && this->m_age == p.m_age) {
            return false;
        }
        else {
            return true;
        }
    }

    string m_name;
    int m_age;
};

void test01()
{
    Person a("张三",18);
    Person b("张三", 18);

    if (a == b)
    {
        cout << "a和b是相等的" << endl;
    }
    else {
        cout << "a和b是不相等的" << endl;
    }
    if (a!= b)
    {
        cout << "a和b是不相等的" << endl;
    }
    else {
        cout << "a和b是相等的" << endl;
    }

}

int main()
{
    test01();
    system("pause");
    return 0;

}

你可能感兴趣的:(c++,算法,开发语言)