C++类与对象基础(5)——日期类的实现

这篇具有很好参考价值的文章主要介绍了C++类与对象基础(5)——日期类的实现。希望对大家有所帮助。如果存在错误或未考虑完全的地方,请大家不吝赐教,您也可以点击"举报违法"按钮提交疑问。

       对于实现日期类中需要用到的例如:构造函数,析构函数,运算符重载等内容,已经在前面几篇文章中进行介绍,故本文只给出关于类和对象中日期类的代码实现,对于代码的原理不给予详细的解释:

1.头文件violent.h:

#pragma once

#include<stdio.h>
#include<iostream>
#include<assert.h>
#include<stdbool.h>

using std::cout;
using std::cin;
using std::endl;


class Date
{
public:

	//构造函数:函数名与类名相同,没有返回值,可以构成重载,自动调用
	//针对内置类型不做处理,针对自定义类型会自动调用其自己的构造函数
	Date(int year = 1, int month = 1, int day = 1);


	//拷贝构造函数,对于日期类可以不写
	//拷贝构造函数针对内置类型会完成值拷贝,针对自定义类型会自动调用其自己的拷贝构造函数
	//Date(Date& d1)
	//{
	//	_year = 2024;
	//	_month = 1;
	//	_day = 6;
	//}

	

	//类的比较运算函数
	bool operator==(Date& d);
	bool operator!=(Date& d);
	bool operator>(Date& d);
	bool operator>=(Date& d);
	bool operator<=(Date& d);
	bool operator<(Date& d);
	
	//获取年月份对应的日期
	int GetMonthDay(int _year, int _month);
	void Print();

	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 operator-(Date& d);


	//析构函数,不是清除对象,而是对对象中的资源进行清理,作用方式与构造函数类似,针对内置类型不作用
	//针对自定义类型会调用自己的析构函数
	//函数名是类名之前加上波浪线,每个类中只能存在一个析构函数,类生命周期结束会自动调用,不能构成重载
	~Date();
	
	



private:
	int _year;
	int _month;
	int _day;
};

2.函数功能实现文件violent.c:

#define _CRT_SECURE_NO_WARNINGS 1

#include"violent.h"

//构造函数
Date::Date(int year, int month, int day)
{
	if ((year < 1) || (month > 12) || (month < 1) || (day < 1))
	{
		cout << "日期信息非法" << endl;
	}
	_year = year;
	_month = month;
	_day = day;
}
//析构函数
Date:: ~Date()
{
	_year = 0;
	_month = 0;
	_day = 0;
}


void Date::Print()
{
	cout << _year << " " << _month << " " << _day << endl;
}
bool Date::operator==(Date& d)
{
	return _year == d._year 
		&& _month == d._month 
		&& _day == d._day;
}

bool Date::operator!=(Date& d)
{
	return !(*this == d);
}

bool Date::operator>(Date& d)
{
	if (_year > d._year)
	{
		return true;
	}
	else if ((_year == d._year) && (_month > d._month))
	{
		return true;
	}
	else if ((_year == d._year) && (_month == d._month) && (_day > d._day))
	{
		return true;
	}
	else
	{
		return false;
	}
}

bool Date::operator>=(Date& d)
{
	return ((*this > d) || (*this == d));
}

bool Date::operator<=(Date& d)
{
	return !(*this > d);
}

bool Date::operator<(Date& d)
{
	return !(*this >= d);

}

int Date::GetMonthDay(const int _year,const int _month)
{
	int Day[13] = { 0,31,28,31,30,31,30,31,31,30,31,30,31 };

	if ((_month == 2) && (((_year % 4 == 0) && (_year % 100 != 0)) || (_year % 400 == 0)))
	{
		return 29;
	}

	return Day[_month];
}

//运算符重载:+=(会改变类)
Date& Date::operator+=(int day)
{
	_day = _day + day;

	while(_day > GetMonthDay(_year,_month))
	{
		_day = _day - GetMonthDay(_year, _month);

		_month++;
		if (_month > 12)
		{
			_month = 0;
			_year++;
		}
	}

	return (*this);
}

Date Date::operator+(int day)
{
	Date tmp(*this);

	tmp = tmp += day;

	return tmp;
}

Date& Date::operator-=(int day)
{
	_day = _day - day;

	while (_day <= 0)
	{
		_month--;
		if (_month == 0)
		{
			_year--;
			_month = 12;
		}
		_day = _day + GetMonthDay(_year, _month);	
	}

	return (*this);
}

Date Date::operator-(int day)
{
	Date tmp(*this);

	tmp = (tmp -= day);

	return tmp;
}

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-(Date& d)
{
	int flag = 1;
	Date max = (*this);
	Date min = (d);

	if ((*this) < d)
	{
		max = d;
		min = (*this);
		flag = -1;
	}
	int n = 0;
	while (min != max)
	{
		min++;
		n++;
	}

	return n * flag;
}

3.功能测试文件Test.c:

#define _CRT_SECURE_NO_WARNINGS 1

#include"violent.h"

void Test1()
{
	Date d1(2024,1,6);
	d1.Print();

	Date d2(2024, 1, 6);
	d2.Print();

	Date d3(2024, 1, 15);

	cout << "测试结果校验: ==" << endl;
	bool ret =(d1==d2);
	cout << " ret = " << ret << endl;

	cout << "测试结果校验: != " << endl;
	bool ret1 = (d2 != d1);
	cout << " ret1 = " << ret1 << endl;

	cout << "测试结果校验:>" << endl;
	bool ret2 = (d3 > d1);
	cout << " ret3 =  " << ret2 << endl;

	cout << "测试结果校验: >=" << endl;
	bool ret3 = (d3 >= d1);
	bool ret4 = (d2 >= d1);
	cout << " ret3 = " << ret3 << endl << "ret4 = " << ret4 << endl;

	cout << "测试结果校验: <=" << endl;
	bool ret5 = (d1 <= d3);
	bool ret6 = (d2 <= d1);
	cout << " ret5 = " << ret5 << endl << " ret6 = " << ret6 << endl;

	cout << "测试结果校验: <" << endl;
	bool ret7 = (d2 < d3);
	cout << "ret7 = " << ret7 << endl;
}

void Test2()
{

	cout << endl << " 下面内容为Test2中的测试" << endl;
	Date dd(2024, 1, 6);
	dd.Print();
	Date dd1(2024, 1, 6);

	cout << "测试+=" << endl;
	Date ret1 = (dd += 100);
	ret1.Print();

	cout << "测试+" << endl;
	Date ret2 = (dd1 + 100);
	ret2.Print();

	cout << "测试-=" << endl;
	Date ret3 = (dd -= 100);
	ret3.Print();

	cout << "测试-" << endl;
	Date ret4 = (dd1 - 100);
	ret4.Print();
}

void Test3()
{
	cout << endl << " 下面内容为Test3中的测试" << endl;
	Date d3(2024, 1, 6);
	cout << " 测试++d" << endl;
	Date ret1 = (++d3);
	Date d4(2024, 1, 6);

	ret1.Print();
	cout << " 测试d++" << endl;
	Date ret2 = (d4++);
	ret2.Print();
}

void Test4()
{
	cout << endl << " 下面内容为Test4中的测试" << endl;
	Date d(2024, 1, 6);
	Date d2(2024, 1, 6);
	cout << "测试--d" << endl;
	Date ret1 = (--d);
	ret1.Print();
	cout << "测试d--" << endl;
	Date ret2 = (d2--);
	ret2.Print();
}

void Test5()
{
	Date d1(2024, 1, 6);
	Date d2(2024, 4, 15);

	int ret1 = d2 - d1;

	cout << ret1 << endl;
}
int main()
{
	Test1();

	Test2();

	Test3();	

	Test4();

	Test5();
}

4. 代码运行结果展示:

C++类与对象基础(5)——日期类的实现,C++,c++,开发语言

 C++类与对象基础(5)——日期类的实现,C++,c++,开发语言文章来源地址https://www.toymoban.com/news/detail-783664.html

到了这里,关于C++类与对象基础(5)——日期类的实现的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处: 如若内容造成侵权/违法违规/事实不符,请点击违法举报进行投诉反馈,一经查实,立即删除!

领支付宝红包 赞助服务器费用

相关文章

  • 【C++】类与对象(日期计算器)

       🌈个人主页: 秦jh__https://blog.csdn.net/qinjh_?spm=1010.2135.3001.5343 🔥 系列专栏: 目录 头文件 函数实现      💬 hello! 各位铁子们大家好哇。              今日更新了类与对象日期计算器的内容      🎉 欢迎大家关注🔍点赞👍收藏⭐️留言📝 声明流插入和流提

    2024年03月10日
    浏览(54)
  • 【C++初阶】类和对象——操作符重载&&const成员函数&&取地址重载&&日期类的实现

    ========================================================================= 个人主页点击直达: 小白不是程序媛 C++系列专栏: C++头疼记 ========================================================================= 目录   前言: 运算符重载 运算符重载  赋值运算符重载 前置++和后置++重载 const成员 取地址及cons

    2024年02月06日
    浏览(53)
  • 【C++】类与对象的项目实践 — 日期管理工具

    根据我们对C++特性的学习,我们现在可以尝试下一些新玩法,来强化我们对C++的理解。 在现代的软件开发中,日期作为一个常见的基础需求,广泛用于各类系统的日程管理,数据分析,交易记录等场景。 但是C++库中的时间日期功能比较有限,无法满足复杂的开发需求。为此

    2024年02月21日
    浏览(31)
  • [C++] 类与对象(中)完整讲述运算符重载示例 -- 日期类(Date) -- const成员

      目录 1、前言 2、全缺省的构造函数 3、打印接口 4、拷贝构造 5、赋值运算符重载(operator=) 5.1赋值重载是默认成员函数,重载格式: 5.2 赋值重载不能为全局函数 5.3 编译器默认生成 6、析构函数 7、operator 8、operator== 9、operator= 10、operator 11、operator= 12、operator!= 13、operato

    2024年02月13日
    浏览(43)
  • C++ 类与对象中类的深入知识点+完整思维导图+基本练习题+深入细节+通俗易懂建议收藏

    本章我们接着对类和对象进行探索,这是一个在我们c++中比较重要的知识点,下面我们才是我们类和对象的更加深入且困难的知识点,希望你能通过这篇文章对类其有更加深入的了解。 话不多说安全带系好,发车啦(建议电脑观看)。 附:红色,部分为重点部分;蓝颜色为

    2024年02月04日
    浏览(62)
  • 类和对象【5】日期类的实现

    类和对象1(初识) 类和对象2(默认成员函数) 类和对象3(初始化列表) 类和对象4(static、const、友元) 在了解了类和对象的基础知识后,我们就可以简单实现一个日期类(前期的知识介绍链接如上,一些基础知识本文就不过多赘述): 我们可以先来看一下网络上找到的

    2024年02月08日
    浏览(34)
  • 【浅尝C++】继承机制=>虚基表/菱形虚继承/继承的概念、定义/基类与派生类对象赋值转换/派生类的默认成员函数等详解

    🏠专栏介绍:浅尝C++专栏是用于记录C++语法基础、STL及内存剖析等。 🎯每日格言:每日努力一点点,技术变化看得见。 我们生活中也有继承的例子,例如:小明继承了孙老师傅做拉面的手艺。继承就是一种延续、复用的方式。C++为了提高代码的可复用性,引入了继承机制,

    2024年04月10日
    浏览(46)
  • 【C++】日期类的实现

    .h 日期类的拷贝构造,析构,复制重载用默认生成的就行。 注意缺省参数在声明和定义 只能出现一处 ,GetMonthDay函数在后面讲解。 注意两点: 1)创建数组要创建13个位置,因为要对应“0月”。 2)因为要多次调用,所以设置成 内敛函数 能传引用就传引用, 提高效率(减少

    2023年04月08日
    浏览(26)
  • 【C++基础】类与对象(下) 初始化列表、友元、内部类、匿名对象

    ​👻内容专栏: C/C++编程 🐨本文概括: C++基础语法。初始化列表、 explicit 、 static 成员、友元、内部类、匿名对象、拷贝对象时的一些编译器优化等。 🐼本文作者: 阿四啊 🐸发布时间:2023.9.8 在创建对象时,编译器通过调用构造函数,给对象中各个成员变量一个

    2024年02月09日
    浏览(48)
  • C++初阶 日期类的实现(下)

    目录 一、输入输出(,)重载的实现 1.1初始版  1.2友元并修改 1.2.1简单介绍下友元 1.2.2修改 1.3重载 二、条件判断操作符的实现 2.1==操作符的实现 2.2!=操作符的实现 2.3操作符的实现 2.4=,=,操作符的实现 三、日期-日期的实现 四、下期预告 前言:C++初阶系列,每一期博主都会使用

    2024年02月04日
    浏览(34)

觉得文章有用就打赏一下文章作者

支付宝扫一扫打赏

博客赞助

微信扫一扫打赏

请作者喝杯咖啡吧~博客赞助

支付宝扫一扫领取红包,优惠每天领

二维码1

领取红包

二维码2

领红包