赞
踩
C++ 语言支持各种关系运算符( < 、 > 、 <= 、 >= 、 == 等等),它们可用于比较 C++ 内置的数据类型,返回值为bool类型。
可以重载任何一个关系运算符,重载后的关系运算符可用于比较类的对象。
下面的实例演示了如何重载 < 运算符,类似地,也可以尝试重载其他的关系运算符。
Boy.h
#pragma once
#include <string>
using namespace std;
class Boy{
public:
Boy(const char* name = "无名", int age = 0, int salary = 0);
~Boy();
//定义了<运算符重载, 返回值为bool类型
bool operator<(const Boy& boy);
string description() const
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。