《C++编程》书中各章的例子

源代码在线查看: 程序10.12:英制比较_比较运算符重载.cpp

软件大小: 95 K
上传用户: atom0722
关键词: 编程
下载地址: 免注册下载 普通下载 VIP

相关代码

				/* 程序10.12:英制比较_比较运算符重载.cpp:*/
				#include		//包含头文件
				#include		//包含头文件
				using namespace std;	//使用名字空间std
				class Length			//声明一个类Length
				{
				private:
					int iFeet;			//声明私有成员变量
					int iInch;
				public:
					Length(int,int);		//声明有参数构造符函数
					int operator>(Length);	//声明比较运算符函数
				};
				int main()					//main()函数开始
				{
					Length L1(3,10);		//声明类对象L1,调用有参数构造符
					Length L2(4,6);			//声明类对象L2,调用有参数构造符
					if(L1>L2)				//等价于if(L1.operator>(L2))
						cout					else
						cout					return 0;
				}							//main()函数结束
				Length::Length(int iFeet,int iInch)	//定义构造符函数
				{
					this->iFeet=iFeet;
					this->iInch=iInch;
				}
				int Length::operator>(Length N)		//定义比较运算符函数
				{
					cout					if(iFeet>N.iFeet)
						return 1;					//1为真(ture)
					else if(iFeet							return 0;				//0为假(flase)
						else if(iInch>N.iInch)
							return 1;
						else
							return 0;
				}
				
							

相关资源