首页 > 其他 > 详细

结构体的比较

时间:2021-04-10 23:01:00      阅读:16      评论:0      收藏:0      [点我收藏+]

 

1. 重写 == 操作符
  
#include<iostream>
using namespace std;

struct A{
    char ch;
    int val;
    friend bool operator==(const A &ob1, const A &ob2);
    bool operator==(const A &rhs);
};

bool operator==(const A &ob1, const A &ob2){
    return (ob1.ch == ob2.ch && ob1.val == ob2.val);
}
bool A::operator==(const A &rhs){
    return (ch == rhs.ch && val == rhs.val);
}

int main(){
    struct A s3,s4;
    A  s, s1;
    A s2;
    s1.ch = 1;
    s1.val = 2;
    s2.ch = 1;
    s2.val = 2;
    if (s1 == s2){
        cout << "s1 is equal with s2" << endl;
    }
    else{
        cout << "s1 is not equal with s2" << endl;
    }
    return 0;
}

 

2. 对结构体的变量进行一一比较
3. 对结构体指针进行比较,如果保存的是同一实例,两个结构体的指针保存的地址是一样的
 

结构体的比较

原文:https://www.cnblogs.com/wanghao-boke/p/14641453.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!