码迷,mamicode.com
首页 > 编程语言 > 详细

C++中重载运算符

时间:2014-08-06 19:19:12      阅读:233      评论:0      收藏:0      [点我收藏+]

标签:c++   重载运算符   operator   

重载运算符,可以定义运算符为自己想要的效果,简化程序,以重载<运算符为例:

#ifndef BOX_H
#define BOX_H
class Box{
public:
	Box(double aLength=1.0,double aWidth=1.0,double aHeight=1.0);
	double volume() const;
	double getLength() const;
	double getWidth() const;
	double getHeight() const;
	
	//重载运算符<
	bool operator < (const Box& aBox) const
	{
		return volume()<aBox.volume();
	}
private :
	double length;
	double width;
	double height;
};
#endif

这样就可以直接调用<运算符直接比较体积。

C++中重载运算符,布布扣,bubuko.com

C++中重载运算符

标签:c++   重载运算符   operator   

原文地址:http://blog.csdn.net/u010142437/article/details/38402287

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