C++第9周(春)项目2 - Time类

课程首页在:http://blog.csdn.net/sxhelijian/article/details/11890759,内有完整教学方案及资源链接

【项目2】在第8周项目2基础上
(1)定义对时间对象的自增和自减一目运算符

	//一目运算符的重载
	CTime operator++(int);//后置++,下一秒
	CTime operator++();//前置++,下一秒,前置与后置返回值不一样
	CTime operator--( int);//后置--,前一秒
	CTime operator--();//前置--,前一秒

(2)定义Time类中的<<和>>运算符重载,实现时间的输入输出,改造原程序中对运算结果显示方式,使程序读起来更自然。

参考解答:

#include <iostream>
using namespace std;
class CTime
{
private:
	unsigned short int hour;    // 时
	unsigned short int minute;  // 分
	unsigned short int second;  // 秒
public:
	CTime(int h=0,int m=0,int s=0);
	void setTime(int h,int m,int s);

	//输入输出运算的重载
	friend istream &operator>>(istream &in,CTime &t);
	friend ostream &operator<<(ostream &out,CTime t);
	//比较运算符(二目)的重载
	bool operator > (CTime &t);
	bool operator < (CTime &t);
	bool operator >= (CTime &t);
	bool operator <= (CTime &t);
	bool operator == (CTime &t);
	bool operator != (CTime &t);
	//二目运算符的重载
	CTime operator+(CTime &c);//返回c所规定的时、分、秒后的时间,例t1(8,20,25),t2(11,20,50),t1+t2为:41:15
	CTime operator-(CTime &c);//对照+理解
	CTime operator+(int s);//返回s秒后的时间
	CTime operator-(int s);//返回s秒前的时间
	//一目运算符的重载
	CTime operator++(int);//后置++,下一秒
	CTime operator++();//前置++,下一秒
	CTime operator--(int);//后置--,前一秒
	CTime operator--();//前置--,前一秒
	//赋值运算符的重载
	CTime operator+=(CTime &c);
	CTime operator-=(CTime &c);
	CTime operator+=(int s);//返回s秒后的时间
	CTime operator-=(int s);//返回s秒前的时间
};

//构造函数
CTime::CTime(int h,int m,int s)
{
	hour=h;
	minute=m;
	second=s;
}
// 设置时间
void CTime::setTime(int h,int m,int s)
{
	hour=h;
	minute=m;
	second=s;
}

// 重载输入运算符>>
istream &operator>>(istream &in,CTime &t)
{
	char ch1,ch2;
	while(1)
	{
		cout<<"请输入时间(hh:mm:ss) ";
		cin>>t.hour>>ch1>>t.minute>>ch2>>t.second;
		if (ch1==':' && ch2==':')
			if (t.hour>-1 && t.hour<24 && t.minute>-1 && t.minute<60 && t.second>-1 && t.second<60) break;
		cerr<<"时间格式不正确! 请重新输入\n";
	}
	return cin;
}

// 重载输出运算符<<
ostream &operator<<(ostream &out,CTime t)
{
	out<<t.hour<<':'<<t.minute<<':'<<t.second;
	return out;
}

//比较运算符的重载
bool CTime::operator > (CTime &t) // 判断时间t1>t2
{
	if (hour>t.hour) return true;
	if (hour<t.hour) return false;
	if (minute>t.minute) return true;
	if (minute<t.minute) return false;
	if (second>t.second) return true;
	return false;
}

bool CTime::operator < (CTime &t)// 判断时间t1<t2
{
	if (hour<t.hour) return true;
	if (hour>t.hour) return false;
	if (minute<t.minute) return true;
	if (minute>t.minute) return false;
	if (second<t.second) return true;
	return false;
}

bool CTime::operator == (CTime &t)// 判断时间t1==t2
{
	if (*this<t || *this>t) return false;
	return true;
}

bool CTime::operator != (CTime &t) // 判断时间t1!=t2
{
	if (*this==t) return false;
	return true;
}

bool CTime::operator >= (CTime &t)// 判断时间t1>=t2
{
	if (*this<t) return false;
	return true;
}

bool CTime::operator <= (CTime &t) // 判断时间t1<=t2
{
	if (*this>t) return false;
	return true;
}

//二目运算符的重载
// 计算时间之和, 返回c所规定的时、分、秒后的时间,例t1(8,20,25),t2(11,20,50),t1+t2为:41:15
CTime CTime::operator + (CTime &t)
{

	int h,m,s;
	s=second+t.second;
	m=minute+t.minute;
	h=hour+t.hour;
	if (s>59)
	{
		s-=60;
		m++;
	}
	if (m>59)
	{
		m-=60;
		h++;
	}
	while (h>23) h-=24;
	CTime t0(h,m,s);
	return t0;
}

//返回s秒后的时间
CTime CTime::operator+(int s)
{
	int ss=s%60;
	int mm=(s/60)%60;
	int hh=s/3600;
	CTime t0(hh,mm,ss);
	return *this+t0;
}

// 计算时间之差
CTime CTime::operator - (CTime &t)
{
	int h,m,s;
	s=second-t.second;
	m=minute-t.minute;
	h=hour-t.hour;
	if (s<0)
	{
		s+=60;
		m--;
	}
	if (m<0)
	{
		m+=60;
		h--;
	}
	while (h<0) h+=24;
	CTime t0(h,m,s);
	return t0;
}

//返回s秒前的时间
CTime CTime::operator-(int s)
{
	int ss=s%60;
	int mm=(s/60)%60;
	int hh=s/3600;
	CTime t0(hh,mm,ss);
	return *this-t0;
}

//一目运算符的重载
CTime CTime::operator++(int)//后置++,下一秒
{
	CTime t=*this;
	*this=*this+1;
	return t;
}

CTime CTime::operator++()//前置++,下一秒
{
	*this=*this+1;
	return *this;
}

CTime CTime::operator--(int)//后置--,前一秒
{
	CTime t=*this;
	*this=*this-1;
	return t;
}

CTime CTime::operator--()//前置--,前一秒
{
	*this=*this-1;
	return *this;
}

//赋值运算符的重载
CTime CTime::operator+=(CTime &c)
{
	*this=*this+c;
	return *this;
}
CTime CTime::operator-=(CTime &c)
{
	*this=*this-c;
	return *this;
}
CTime CTime::operator+=(int s)//返回s秒后的时间
{
	*this=*this+s;
	return *this;
}
CTime CTime::operator-=(int s)//返回s秒前的时间
{
	*this=*this-s;
	return *this;
}

int main()
{
	CTime t1,t2,t;

	cout<<"t1为:";
	cin>>t1;
	cout<<"t2为:";
	cin>>t2;
	cout<<"下面比较两个时间大小:\n";
	if (t1>t2) cout<<"t1>t2"<<endl;
	if (t1<t2) cout<<"t1<t2"<<endl;
	if (t1==t2) cout<<"t1=t2"<<endl;
	if (t1!=t2) cout<<"t1≠t2"<<endl;
	if (t1>=t2) cout<<"t1≥t2"<<endl;
	if (t1<=t2) cout<<"t1≤t2"<<endl;
	cout<<endl;
	cout<<"t1= "<<t1<<endl;
	cout<<"t2= "<<t2<<endl;

	cout<<"t=t1++"<<endl;
	t=t1++;
	cout<<"t= "<<t<<"    t1= "<<t1<<endl;

	cout<<"t=++t1"<<endl;
	t=++t1;
	cout<<"t= "<<t<<"    t1= "<<t1<<endl;

	cout<<"t1+t2= "<<t1+t2<<endl;
	cout<<"t1-t2= "<<t1-t2<<endl;
	cout<<"t1+2000= "<<t1+2000<<endl;
	cout<<"t1-5000= "<<t1-5000<<endl;
	return 0;
}
==================== 迂者 贺利坚 CSDN博客专栏=================
|== IT学子成长指导专栏 专栏文章的分类目录(不定期更新) ==|
|== C++ 课堂在线专栏  贺利坚课程教学链接(分课程年级) ==|
|== 我写的书——《逆袭大学——传给IT学子的正能量》    ==|
===== 为IT菜鸟起飞铺跑道,和学生一起享受快乐和激情的大学 =====
时间: 2024-10-26 04:16:11

C++第9周(春)项目2 - Time类的相关文章

C++第8周(春)项目3 分数类中的运算符重载

课程首页在:http://blog.csdn.net/sxhelijian/article/details/11890759,内有完整教学方案及资源链接 [项目3-分数类中的运算符重载]实现分数类中的运算符重载,在分数类中可以完成分数的加减乘除(运算后再化简).比较(6种关系)的运算.可以以第5周项目2的代码为基础开始工作. class CFraction { private: int nume; // 分子 int deno; // 分母 public: //构造函数及运算符重载的函数声明 }

C++第3周(春)项目3 时间类

课程首页在:http://blog.csdn.net/sxhelijian/article/details/11890759,内有完整教学方案及资源链接 [项目3 - 时间类]阅读.运行程序后,按要求增加类的功能 #include <iostream> using namespace std; class Time { public: void set_time( ); void show_time( ); private: bool is_time(int, int, int); //这个成

C++第7周(春)项目4 友元类

课程首页在:http://blog.csdn.net/sxhelijian/article/details/11890759,内有完整教学方案及资源链接 [项目4-友元类] 定义下面两个类的成员函数(为体验友元类,实际上本例并不一定是一个好的设计,将两个类的合并为一个DateTime,日期.时间都处理更好) class Date; //对Date类的提前引用声明 class Time { public: Time(int,int,int); void add_a_second(Date &);

C++第11周(春)项目3 - 点类派生直线类

课程首页在:http://blog.csdn.net/sxhelijian/article/details/11890759,内有完整教学方案及资源链接 [项目3 - 点类派生直线类]定义点类Point,并以点类为基类,派生出直线类Line,从基类中继承的点的信息表示直线的中点.请阅读下面的代码,并将缺少的部分写出来. #include<iostream> #include<Cmath> using namespace std; class Point //定义坐标点类 { pub

C++第4周(春)项目2 三角形类2

课程首页在:http://blog.csdn.net/sxhelijian/article/details/11890759,内有完整教学方案及资源链接 [项目2 - 三角形类2]程序功能同项目1,main()函数如下,请重新定义Triangle类,其中逻辑特别简单的set和get成员函数,要处理为内置成员函数,直接在类内定义. int main() { Triangle tri1; //定义三角形类的一个实例(对象) double x,y,z; cout<<"请输入三角形的三边:&

C++第5周(春)项目2 分数类的雏形

课程首页在:http://blog.csdn.net/sxhelijian/article/details/11890759,内有完整教学方案及资源链接 [项目2-分数类的雏形] C++中提供了多种基本的数据类型.实际上,这些远不能满足我们的需求,如复数(第10章的例子大多是处理虚数的),再如分数.我们可以自定义类支持这些数据类型. 本任务将设计一个简单的分数类,完成对分数的几个运算.一则巩固基于对象编程的方法,二则也为第10章做运算符重载等积累些感性认识. 分数类的声明为: class CFr

C++第9周(春)项目3 - 分数类

课程首页在:http://blog.csdn.net/sxhelijian/article/details/11890759,内有完整教学方案及资源链接 [项目3]在第8周项目3基础上(1)定义分数的一目运算+和-,分别代表分数取正和求反,将"按位取反运算符"~重载为分数的求倒数运算.(2)定义分数类中<<和>>运算符重载,实现分数的输入输出,改造原程序中对运算结果显示方式,使程序读起来更自然. 参考解答: #include <iostream> #

C++第9周(春)项目1 - 复数类

课程首页在:http://blog.csdn.net/sxhelijian/article/details/11890759,内有完整教学方案及资源链接 [项目1]在第8周项目1基础上(1)再定义一目运算符 -,-c相当于0-c.(2)定义Complex类中的<<和>>运算符的重载,实现输入和输出,改造原程序中对运算结果显示方式,使程序读起来更自然. 参考解答: #include <iostream> using namespace std; class Complex

C++第5周(春)项目1 三角形类1

课程首页在:http://blog.csdn.net/sxhelijian/article/details/11890759,内有完整教学方案及资源链接 [项目1-三角形类的构造函数] 设计三角形类,通过增加构造函数,使对象在定义时能够进行初始化,可以由下面的类声明开始,需要自己实现相关的成员函数,以及增加要求的构造函数 class Triangle { public: double perimeter();//计算三角形的周长 double area();//计算并返回三角形的面积 void