日期类

进行日期的比较、加减天数及两个日期的时间差等运算。

代码如下:

#include<iostream>
#include<assert.h>
using namespace std;

class Date
{
public:
	void Display()
	{
		cout << _year << "-" << _month << "-" << _day << endl;
	}
public:
	Date(int year, int month, int day)
	{//应判断日期是否有效
		//cout << "Date(int year, int month, int day)" << endl;
		if (year >= 2000 && month > 0 && month<13 && day>0 && day <= GetMonthDay(year, month))
		{
			_year = year;
			_month = month;
			_day = day;
		}
		else
		{
			cout << "日期非法!" << endl;
			assert(false);
		}
	}
	Date (const Date& d)
	{
		//cout << "Date (const Date& d)" << endl;
		this->_year = d._year;
		this->_month = d._month;
		this->_day = d._day;
	}
	~Date()
	{
		//cout << "~Date()" << endl;
	}
public://两个日期相比较
	bool operator == (const Date& d);
	bool operator < (const Date& d);
	bool operator <= (const Date& d);
	bool operator > (const Date& d);
	bool operator >= (const Date& d);
public://日期计算器
	Date operator +(int day);
	Date& operator +=(int day);
	Date operator -(int day);
	Date& operator -=(int day);
	Date& operator++();//前置++
	Date operator++(int);//后置++
	Date& operator--();//前置--
	Date operator--(int);//后置--
	int GetMonthDay(int year, int month);
	int operator -(const Date& d);//两个日期间相差的天数
private:
	int _year;
	int _month;
	int _day;
};

bool Date::operator == (const Date& d)
{
	return this->_year == d._year&&this->_month == d._month&&this->_day == d._day;
}
bool Date::operator < (const Date& d)
{
	return this->_year < d._year ||
		(this->_year == d._year&&this->_month < d._month) ||
		(this->_year == d._year&&this->_month == d._month&&this->_day < d._day);
}
bool Date::operator <= (const Date& d)
{//复用代码
	return *this<d || *this == d;
}
bool Date::operator > (const Date& d)
{
	return this->_year > d._year ||
		(this->_year == d._year&&this->_month > d._month) ||
		(this->_year == d._year&&this->_month == d._month&&this->_day > d._day);
}
bool Date::operator >= (const Date& d)
{//复用代码
	return *this>d || *this == d;
}

//日期计算器
int Date::GetMonthDay(const int year, const int month)//获得具体某年某月的总天数
{
	int day;
	if (month == 1 || month == 3 || month == 5 || month == 7 || month == 8 || month == 10 || month == 12)
		day = 31;
	else if (month == 2)
	{
		if (year % 4 == 0 && year % 100 != 0 || year % 400 == 0)
			day = 29;
		else
			day = 28;
	}
	else
		day = 30;
	return day;
}

Date Date::operator +(int day)//日期加天数
{
	if (day < 0)
		return *this - (-day);
	Date tmp = *this;
	tmp._day += day;
	while (tmp._day >(GetMonthDay(tmp._year, tmp._month)))
	{
		tmp._day -= GetMonthDay(tmp._year, tmp._month);
		if (tmp._month == 12)
		{
			tmp._year += 1;
			tmp._month = 1;
		}
		else
			tmp._month += 1;
	}
	return tmp;
}
Date& Date::operator +=(const int day)
{
	return *this = *this + day;
}
Date Date::operator -(const int day)//日期减天数
{
	if (day < 0)
		return *this + (-day);
	Date tmp = *this;
	tmp._day -= day;
	while (tmp._day <= 0)
	{
		if (tmp._month == 1)
		{
			--tmp._year;
			tmp._month = 12;
		}
		else
			tmp._month--;
		tmp._day += GetMonthDay(tmp._year, tmp._month);
	}
	return tmp;
}
Date& Date::operator -=(const int day)
{
	return *this = *this - day;
}
Date& Date::operator++()//前置++
{
	*this += 1;
	return *this;
}
Date Date::operator++(int)//后置++
{
	Date tmp = *this;
	*this += 1;
	return tmp;
}
Date& Date::operator--()//前置--
{
	*this -= 1;
	return *this;
}
Date Date::operator--(int)//后置--
{
	Date tmp = *this;
	*this -= 1;
	return tmp;
}

int Date::operator -(const Date& d)//两个日期间相差的天数
{//通过较小的日期不断自加,直到等于较大的日期,统计出自加次数
	int flag = 1;
	int days = 0;
	Date max = *this;
	Date min = d;
	if (max < min)
	{//调用C++库函数中的swap(std::swap())
		std::swap(max._year, min._year);
		std::swap(max._month, min._month);
		std::swap(max._day, min._day);
		flag = -1;
	}
	while(!(min == max))
	{
		min++;
		days++;
	}
	return flag*days;
}
void Test1()
{//比较日期大小
	Date p1(2016, 1, 20);
	Date p2(2016, 1, 25);
	p1.Display();
	p2.Display();
	bool ret;
	ret = p1 == p2;
	cout << "---------ret = " << ret << endl;
	ret = p1 > p2;
	cout << "---------ret = " << ret << endl;
	ret = p1 < p2;
	cout << "---------ret = " << ret << endl;
}

void Test2()
{//日期加减天数
	Date p1(2016, 2, 20);
	Date p2(2016, 1, 25);
	p1.Display();
	p1 = p1 + 41;
	p1.Display();
	cout << endl;
	++p1;
	p1.Display();
	p1++;
	p1.Display();
	cout << endl;
	p2.Display();
	p2 = p2 - 56;
	p2.Display();
	cout << endl;
	--p2;
	p2.Display();
	p2--;
	p2.Display();
}

void Test3()
{//两个日期间相差的天数
	Date p1(2016, 2, 20);
	Date p2(2016, 1, 25);
	int days = p1 - p2;
	cout << days << endl;
}

int main()
{
	Test1();
	Test2();
	Test3();
	system("pause");
	return 0;
}
时间: 2024-10-11 06:30:17

日期类的相关文章

日期类 Date

import java.text.ParseException; import java.text.SimpleDateFormat; import java.util.Calendar; import java.util.Date; /* 日期类 Date Calendar 日期格式化类 SimpleDateFormat */ public class Demo3 { public static void main(String[] args) throws ParseException {

day17 包装类、日期类

包装类 作用:1.丰富了基本数据类型只能存放值的问题,还提供了大量的方法或常量. 2.包装类充当了基本数据类型和引用数据类型转换的桥梁. 应用层面:包装类.String.基本数据类型的互相转换. 1.基本数据类型转为String: String str = Integer.toString(10): String str = 10 + "": 2.String转换为基本数据类型: int i = Integer.parseInt(str): 3.基本数据类型和包装类互转换: 语法糖--

利用java日期类生成数据仓库维度表

利用java日期类生成数据仓库维度表 Date类: 最基础的日期时间类,返回一个相对日期的毫秒数.精确到毫秒,但不支持日期的国际化和分时区显示.Date 类从Java 开发包(JDK)1.0 就开始进化,当时它只包含了几个取得或者设置一个日期数据的各个部分的方法, 比如说月, 日, 和年. 这些方法现在遭到了批评并且已经被转移到了Calendar类里去了,这种改进旨在更好的处理日期数据的国际化格式. Calender类: 相对于Date更加强大的时间类,是抽象类,提供了常规的日期修改功能和国际化

Problem B: 时间和日期类(III)

Problem B: 时间和日期类(III) Time Limit: 4 Sec  Memory Limit: 128 MBSubmit: 2889  Solved: 1732[Submit][Status][Web Board] Description 设计一个日期时间类,用于读取输入的数据,按格式输出日期和时间. 设计日期时间类DateTime由2个成员组成,分别是一个Date类对象和一个Time类对象: 设计DateTime类需支持以下操作: DateTime::DateTime()无参构

Java:日历类、日期类、数学类、运行时类、随机类、系统类

一:Calendar类 java.util 抽象类Calendar   1.static Calendar getInstance()使用默认时区和语言环境获得一个日历. 2. int get(int field) 返回给定日历字段的值. java.lang.Object 继承者 java.util.Calendar 所有已实现的接口: Serializable, Cloneable, Comparable<Calendar> 直接已知子类: GregorianCalendar 对于日期字段:

时间类和日期类派生出时间日期类

今天再写一个多重继承的应用实例,时间类和日期类派生出时间日期类 程序代码 #include <iostream> using namespace std; class Date//日期类 { public: //构造函数 Date(int y = 0, int m = 0, int d = 0); //设置日期 void SetDate(int y,int m,int d); //打印日期 void PrintDate() { cout<<year<<"年&q

日期类详解

我不清楚大家在上大学的时候是什么样的情况,在我上大学的时候,老师在开课上第一节课的时候都会告诉我们,这本书他会将多少知识点?讲到哪里?考试考到哪里?以至于好多课程我学到的都只是皮毛基础的东西.导致现在不得不花很多的功夫来补以前落下的知识点.其中这个日期类就是一个很重要的知识点,在工作中经常会用到它,这个东西也不难,但是对于我自己来说经常忘这鬼,所以我这次就把它从头梳理一遍并且记录下来,供备以后使用. 首先介绍Date类的构造方法: 1. Date() 创建一个获取当前日期和时间的Date对象.

javascript-封装Date日期类

迁移时间:2017年5月27日18:43:02 Author:Marydon (一)对日期进行格式化 //自定义Date日期类的format()格式化方法 <script type="text/javascript"> // 对Date的扩展,将 Date 转化为指定格式的String // 月(M).日(d).小时(H).分(m).秒(s).季度(q) 可以用 1-2 个占位符, // 年(y)可以用 1-4 个占位符,毫秒(S)只能用 1 个占位符(是 1-3 位的数字

【C++】日期类+日期万年历+日期计算器

对于日期类,我们主要实现一下日期类的基本函数,构造,拷贝构造,运算符的重载,析构.当然这里运算符的重载需要实现的还是挺多的,如:=.<.>.<=.>=.等 #include <iostream> using namespace std; class Date { public:     Date(int year = 1990, int month = 1, int day = 1)     {         _year = year;         _month 

用c++实现的简单的日期类

自己写的这个日期类实现了简单的一些日期可能会用到的功能, 比如加减某一个日期等等,详细的已在代码里面标注出来了. #include <iostream>using namespace std; class Date{public: Date(int year = 1900, int month = 1, int day = 1)  :_year(year)    //初始化列表     ,_month(month)     ,_day(day) {  if (year < 1900