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

C++ class内的 < 和 > 重载,大于号,小于号,重载示例。

时间:2019-12-01 11:32:57      阅读:297      评论:0      收藏:0      [点我收藏+]

标签:重载   操作符   大于   opera   load   c++   loading   std   end   

#include <iostream>

// overloading "operator = " outside class
// < 和 > 是二元操作符

//////////////////////////////////////////////////////////

class Rectangle
{
public:
	Rectangle(int w, int h) 
		: width(w), height(h)
	{};

	~Rectangle() {};


	bool operator< (Rectangle& rec);//注意比较的顺序。this是被比的对象。
	bool operator> (Rectangle& rec);



public:
	int width;
	int height;
};


bool
Rectangle::operator< (Rectangle & rec)//相同的class对象互为友元,所以可以访问private对象。< 是二元操作符,class内隐藏了this
{
	return this->height * this->width < rec.height * rec.width;
}

bool
Rectangle::operator> (Rectangle & rec)//二元操作符,class内隐藏了this
{
	return !(*this < rec);
}

//////////////////////////////////////////////////////////

int main()
{
	Rectangle a(40, 10);
	Rectangle b(40, 56);

	std::cout << (a < b) << std::endl;
	std::cout << (a > b) << std::endl;

	return 0;
}

  

C++ class内的 < 和 > 重载,大于号,小于号,重载示例。

标签:重载   操作符   大于   opera   load   c++   loading   std   end   

原文地址:https://www.cnblogs.com/alexYuin/p/11965190.html

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