随时随地阅读更多技术实战干货,获取项目源码、学习资料,请关注源代码社区公众号(ydmsq666)
重载运算符,可以定义运算符为自己想要的效果,简化程序,以重载<运算符为例:
#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
这样就可以直接调用<运算符直接比较体积。