首页 > 编程语言 > 详细

[C++][结构体] 结构体重载运算符

时间:2020-05-01 22:51:18      阅读:721      评论:0      收藏:0      [点我收藏+]

众所周知(我并不知道),C++中结构体想要直接用运算符操作的话,是需要重载运算符

懒得单独展开了,直接贴个写过的代码吧

 1 struct node{
 2     int val;
 3     int index;
 4     int pre, next;
 5     bool operator > (const node that) const{
 6         return this->val > that.val; // 这是在结构体里重载运算符的方法
 7     }
 8     bool operator < (const node that) const{
 9         return this->val < that.val;
10     }
11 }a[MAXN];

以上来自某代码片段

 

[C++][结构体] 结构体重载运算符

原文:https://www.cnblogs.com/Foggy-Forest/p/12814816.html

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