C++运算符重载==,<,>,<=,>=
2022/1/10 20:04:03
本文主要是介绍C++运算符重载==,<,>,<=,>=,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
,<,<=,>=" href="https://blog.csdn.net/qq_58665528/article/details/122414567" rel="external nofollow" target="_blank">运算符重载==,>,<,<=,>=https://blog.csdn.net/qq_58665528/article/details/122414567
以==为例
1. 对于a == b (a.operator==(b)),我们肯定希望b的值不会改,所以要有const修饰,加上希望减少空间开销,提高效率,所以使用引用。所以,参数的类型为const Point&
2. 对于a == b (a.operator==(b)),对于函数的返回值,自然是布尔类型
综上得出bool operator==(const Point& point);
class Point { private: int m_xPosition; int m_yPosition; public: Point(int xPosition = 0, int yPosition = 0); //构造函数 声明 bool operator==(const Point& point); //重载运算符== 声明 bool operator<=(const Point& point); //重载运算符<= 声明 bool operator>=(const Point& point); //重载运算符>= 声明 bool operator<(const Point& point); //重载运算符< 声明 bool operator>(const Point& point); //重载运算符> 声明 }; //构造函数 定义 Point::Point(int xPosition, int yPosition) : m_xPosition(xPosition), m_yPosition(yPosition) {} //重载运算符== 定义 bool Point::operator==(const Point& point) { if (this->m_xPosition == point.m_xPosition && this->m_yPosition == point.m_yPosition) return true; else return false; } //重载运算符<= 定义 bool Point::operator<=(const Point& point) { if (this->m_xPosition <= point.m_xPosition && this->m_yPosition <= point.m_yPosition) return true; else return false; } //重载运算符>= 定义 bool Point::operator>=(const Point& point) { if (this->m_xPosition >= point.m_xPosition && this->m_yPosition >= point.m_yPosition) return true; else return false; } //重载运算符< 定义 bool Point::operator<(const Point& point) { if (this->m_xPosition < point.m_xPosition && this->m_yPosition < point.m_yPosition) return true; else return false; } //重载运算符> 定义 bool Point::operator>(const Point& point) { if (this->m_xPosition > point.m_xPosition && this->m_yPosition > point.m_yPosition) return true; else return false; }
这篇关于C++运算符重载==,<,>,<=,>=的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-11-26MATLAB 中 A(7)=[];什么意思?-icode9专业技术文章分享
- 2024-11-26UniApp 中如何实现使用输入法时保持页面列表不动的效果?-icode9专业技术文章分享
- 2024-11-26在 UniApp 中怎么实现输入法弹出时禁止页面向上滚动?-icode9专业技术文章分享
- 2024-11-26WebSocket是什么,怎么使用?-icode9专业技术文章分享
- 2024-11-26页面有多个ref 要动态传入怎么实现?-icode9专业技术文章分享
- 2024-11-26在 UniApp 中实现一个底部输入框的常见方法有哪些?-icode9专业技术文章分享
- 2024-11-26RocketMQ入门指南:搭建与使用全流程详解
- 2024-11-26RocketMQ入门教程:轻松搭建与使用指南
- 2024-11-26手写RocketMQ:从入门到实践的简单教程
- 2024-11-25【机器学习(二)】分类和回归任务-决策树(Decision Tree,DT)算法-Sentosa_DSML社区版