码迷,mamicode.com
首页 > 其他好文 > 详细

operator

时间:2018-07-15 11:08:21      阅读:155      评论:0      收藏:0      [点我收藏+]

标签:space   简单的   person   cout   判断   tor   end   pre   false   

例1,最简单的情况,重载==,以判断两个对象是否相等

#include "stdafx.h"
#include <iostream>
using namespace std;

class person
{
private:
    long id;
public:
    person(long id)
    {
        this->id = id;
    }
    bool operator == (const person& person) const
    {
        if (this->id == person.id)
            return true;
        return false;
    }
};

int main_20180715_0216()
{
    person p1(1);
    person p2(1);
    cout << "p1 == p2 ? " << (p1 == p2) << endl;
    cin.get();
    return 0;
}

 

operator

标签:space   简单的   person   cout   判断   tor   end   pre   false   

原文地址:https://www.cnblogs.com/heben/p/9311589.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!