c++初阶篇(七):类和对象(日期类)

1.头文件

定义了日期类,给出了类成员变量及成员函数的声明

#pragma once
#include<iostream>
#include<assert.h>
using namespace std;
class Date{public:friend ostream& operator<<(ostream& out, const Date& d);friend istream& operator>>(istream& in, Date& d);//判断日期是否合法void IsDayTrue()const;// 获取某年某月的天数static int GetMonthDay(int year, int month);// 全缺省的构造函数Date(int year = 1900, int month = 1, int day = 1) {IsDayTrue();_year = year;_month = month;_day = day;}// 拷贝构造函数// d2(d1)Date(const Date& d) {_year = d._year;_month = d._month;_day = d._day;}//打印日期void printf()const {cout << _year << "-" << _month << "-" << _day << endl;}// 赋值运算符重载// d2 = d3 -> d2.operator=(&d2, d3)Date& operator=(const Date& d) {if (this != &d) {this->_year = d._year;this->_month = d._month;this->_day = d._day;}return *this;}// 析构函数~Date() {}// 日期+=天数Date& operator+=(int day);// 日期+天数Date operator+(int day)const;// 日期-天数Date operator-(int day)const;// 日期-=天数Date& operator-=(int day);// 前置++Date& operator++();// 后置++Date operator++(int)const;// 后置--Date operator--(int )const;// 前置--Date& operator--();// >运算符重载bool operator>(const Date& d)const;// ==运算符重载bool operator==(const Date& d)const;// >=运算符重载bool operator >= (const Date& d)const;// <运算符重载bool operator < (const Date& d)const;// <=运算符重载bool operator <= (const Date& d)const;// !=运算符重载bool operator != (const Date& d)const;// 日期-日期 返回天数int operator-(const Date& d)const;private:int _year;int _month;int _day;};//流插入,流提取ostream& operator<<(ostream& out ,const Date& d);
istream& operator>>(istream& in, Date& d);

2.成员函数的定义

#include "date.h"void Date::IsDayTrue()const {if (_month > 0 && _month < 13 && _day>0 && _day <= GetMonthDay(_year, _month)) {return;}else {cout << "非法日期" << endl;assert(false);}
}int Date::GetMonthDay(int year, int month)  {int _month[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 _month[month];
}Date& Date::operator+=(int day) {_day += day;while (_day > GetMonthDay(_year, _month)) {_day -= GetMonthDay(_year, _month);_month++;if (_month > 12) {_year++;_month = 1;}}return *this;
}Date Date::operator+(int day)const {Date temp(*this);temp += day;return temp;
}Date& Date::operator-=(int day) {_day -= day;while (_day < 0) {_month--;_day += GetMonthDay(_year, _month);if (_month < 0) {_year--;_month = 1;}}return *this;}Date Date::operator-(int day)const {Date temp(*this);temp -= day;return temp;
}Date& Date::operator++() {*this += 1;return *this;
}Date Date::operator++(int )const {Date temp(*this);temp+=1;return temp;}Date& Date::operator--() {*this -= 1;return *this;
}Date Date::operator--(int) const{Date temp(*this);temp-=1;return temp;}bool Date::operator>(const Date& d)const {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;}return false;}bool Date::operator==(const Date& d) const {if ((_year == d._year) && (_month == d._month) && (_day == d._day)) {return true;}return false;}bool Date::operator >= (const Date& d)const {return ((*this > d) || (*this == d));}bool Date::operator < (const Date& d)const {return !(*this >= d);
}bool Date::operator <= (const Date& d) const {return !(*this > d);
}bool  Date::operator != (const Date& d) const {return !(*this == d);
}//int Date::operator-(const Date& d) {
//
//	int days = 0;
//	int month = _month;
//	int year = _year;
//
//	if (_day < d._day) {
//
//		_day += GetMonthDay(_year, month);
//		month--;
//	}
//
//	days = _day - d._day;
//	
//
//	if (month < d._month) {
//
//		month += 12;
//		year--;
//	}
//	
//	int x = d._month;
//
//	for (int i = d._month,y=d._year; i < month ; i++,x++) {   //控制循环次数,即计算相差几个月
//
//		if(x > 12) {    
//			x = 1;
//			y++;
//		}
//		int ret=GetMonthDay(y,x);
//		days += ret;
//
//
//	}
//
//	for (int i = d._year; i < year; i++) {
//
//		if ((i % 4 == 0 && i % 100 != 0) || (i % 400 == 0)) {
//			days += 366;
//		}
//
//		else {
//			days += 365;
//		}
//	}
//
//	return days;
//}//d1<d2,计算d1-d2int Date::operator-(const Date& d)const
{int flag = 1;Date max = *this;Date min = d;if (*this < d){max = d;min = *this;flag = -1;}int day = 0;while (min < max){++(min);++day;}return day * flag;
}ostream& operator<<(ostream& out, const Date& d) {d.IsDayTrue();out << d._year  <<"年"<< d._month << "月" << d._day << "日" << endl;return out;
}istream& operator>>(istream& in, Date& d) {in >> d._year >> d._month >> d._day;d.IsDayTrue();return in;}

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/diannao/51617.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

计算机网络中的 IPv6 部署与转换

背景介绍 随着互联网的迅速发展&#xff0c;IPv4 地址资源日益枯竭&#xff0c;无法满足未来互联网设备连接的需求。为了解决这一问题&#xff0c;IPv6 应运而生。IPv6&#xff08;互联网协议第六版&#xff09;提供了比 IPv4 更大的地址空间、更好的安全性和扩展性。然而&…

【多模态大模型】 ALBEF in NeurIPS 2021

一、引言 论文&#xff1a; Align before Fuse: Vision and Language Representation Learning with Momentum Distillation 作者&#xff1a; Salesforce Research 代码&#xff1a; ALBEF 特点&#xff1a; 该方法使用ViT进行图像特征提取&#xff0c;提出将BERT分两部分&am…

Cocos Creator2D游戏开发(3)-飞机大战(1)-背景动起来

资源见: https://pan.baidu.com/s/1cryYNdBOry5A4YEEcLwhDQ?pwdzual 步骤 1, 让背景动起来 2, 玩家飞机显现,能操控,能发射子弹 3.敌机出现 4. 碰撞效果(子弹和敌机,敌机和玩家) 5. 积分和游戏结束 6. 游戏存档,对接微信小游戏,保存历史最高分 7. cocos发布到微信小游戏 资源…

探索Python的进度条神器:tqdm

文章目录 探索Python的进度条神器&#xff1a;tqdm一、背二、tqdm简介三、安装tqdm四、tqdm的五个简单使用示例五、tqdm在不同场景下的应用六、常见问题及解决方案七、总结 探索Python的进度条神器&#xff1a;tqdm 一、背 景&#xff1a;为什么选择tqdm&#xff1f; 在Python…

苦学Opencv的第十四天:人脸检测和人脸识别

Python OpenCV入门到精通学习日记&#xff1a;人脸检测和人脸识别 前言 经过了十三天的不懈努力&#xff0c;我们终于也是来到了人脸检测和人脸识别啦&#xff01;相信大家也很激动吧。接下来我们开始吧&#xff01; 人脸识别是基于人的脸部特征信息进行身份识别的一种生物识…

Spring 常用的三种拦截器详解

前言 在开发过程中&#xff0c;我们常常使用到拦截器来处理一些逻辑。最常用的三种拦截器分别是 AOP、 Interceptor 、 Filter&#xff0c;但其实很多人并不知道什么时候用AOP&#xff0c;什么时候用Interceptor&#xff0c;什么时候用Filter&#xff0c;也不知道其拦截顺序&am…

spring —— 事务管理器

事务管理主要针对数据源进行操作&#xff1a;在数据库方面&#xff0c;通过 TransactionManager 事务管理器进行管理&#xff0c;表明一旦出现错误&#xff0c;该数据源的所有数据全部复原。那么数据库如何判断是否发生了错误呢&#xff1f;这就需要在代码方面&#xff0c;通过…

TreeSize-Pro-9.0.1磁盘占用分析工具

软件下载 TreeSize-Pro-9.0.1磁盘占用分析工具是一个热门的 精品软件 网站&程序 这款软件操作简单&#xff0c;选择需要分析的磁盘开始分析后&#xff0c;左侧列表中很明显的看到磁盘下各个文件夹的大小。 选择文件夹后能在右边显示文件夹下的内容&#xff0c;并且也能显…

抖音直播弹幕数据逆向:websocket和JS注入

&#x1f50d; 思路与步骤详解 &#x1f575;️‍♂️ 思路介绍 首先&#xff0c;我们通过抓包工具进入的直播间&#xff0c;捕获其网络通信数据&#xff0c;重点关注WebSocket连接。发现直播弹幕数据通过WebSocket传输&#xff0c;这种方式比传统的HTTP更适合实时数据的传输。…

前端基于 axios 实现批量任务调度管理器 demo

一、背景介绍 这是一个基于 axios 实现的批量任务调度管理器的 demo。它使用了axios、promise 等多种技术和原理来实现批量处理多个异步请求&#xff0c;并确保所有请求都能正确处理并报告其状态。 假设有一个场景&#xff1a;有一个任务列表&#xff0c;有单个任务的处理功能…

alova的二次封装

alova的二次封装 为什么要进行alova二次封装二次封装的具体步骤1. index.js2. api.js3. service.js4. 在Vue中使用 为什么要进行alova二次封装 上篇文章介绍了alova的基本使用方法&#xff1a;alova详解&#xff0c;对比axios&#xff0c;alova的具体使用&#xff0c;但是每次…

【Qt】QLCDNumberQProgressBarQCalendarWidget

目录 QLCDNumber 倒计时小程序 相关属性 QProgressBar 进度条小程序 相关设置 QLCDNumber QLCDNumber是Qt框架中用于显示数字或计数值的小部件。通常用于显示整数值&#xff0c;例如时钟、计时器、计数器等 常用属性 属性说明intValueQLCDNumber显示的初始值(int类型)va…

企业版邮箱适用哪些企业

企业邮箱适合哪些企业呢&#xff1f;企业版邮箱为企业提供安全、稳定、集成的邮件服务&#xff0c;支持初创、中小、大型企业及特定行业需求。ZohoMail作为优质提供商&#xff0c;提供多层安全措施、移动访问、集成能力及定制化服务&#xff0c;满足不同规模企业需求。 一、企…

2023年系统架构设计师考试总结

原文链接&#xff1a;https://www.cnblogs.com/zhaotianff/p/17812187.html 上周六参加了2023年系统架构设计师考试&#xff0c;这次考试与以前有点区别&#xff0c;是第一次采用电子化考试&#xff0c;也是教材改版后的第一次考试。 说说考前准备&#xff1a;为了准备这次考试…

流媒体服务器Nginx with RTMP安装和配置

以下是在 CentOS 7.6 上安装和配置 Nginx with RTMP module 的详细步骤&#xff1a; 1. 安装 Nginx with RTMP 模块 1.1 安装必要的依赖和工具 首先&#xff0c;更新系统并安装必要的依赖包&#xff1a; sudo yum update -y sudo yum install -y epel-release sudo yum ins…

基于微信小程序的校园警务系统/校园安全管理系统/校园出入管理系统

摘要 伴随着社会以及科学技术的发展&#xff0c;小程序已经渗透在人们的身边&#xff0c;小程序慢慢的变成了人们的生活必不可少的一部分&#xff0c;紧接着网络飞速的发展&#xff0c;小程序这一名词已不陌生&#xff0c;越来越多的学校机构等都会定制一款属于自己个性化的小程…

利用arthas热更新class文件

利用arthas热更新class文件 背景&#xff1a;发现一个bug&#xff0c;家里难以复现&#xff0c;需要在现场环境更新几行代码验证。 arthas-boot version: 3.7.1 java -jar arthas-boot.jar启动arthas 1、利用arthas的sc命令查找确定类名称 sc com.**2、反编译为java文件 …

《通讯世界》是什么级别的期刊?是正规期刊吗?能评职称吗?

问题解答 问&#xff1a;《通讯世界》是不是核心期刊&#xff1f; 答&#xff1a;不是&#xff0c;是知网收录的第一批认定学术期刊。 问&#xff1a;《通讯世界》级别&#xff1f; 答&#xff1a;国家级。主管单位&#xff1a;科学技术部 主办单位&#xff1a;中国科学技…

C++ //练习 15.35 实现Query类和Query_base类,其中需要定义rep而无须定义eval。

C Primer&#xff08;第5版&#xff09; 练习 15.35 练习 15.35 实现Query类和Query_base类&#xff0c;其中需要定义rep而无须定义eval。 环境&#xff1a;Linux Ubuntu&#xff08;云服务器&#xff09; 工具&#xff1a;vim 代码块&#xff1a; #include<iostream>…

如何从零开始搭建一个django+vue的前后端分离的自动化测试平台

嗨&#xff0c;大家好&#xff0c;我是兰若姐姐&#xff0c;今天手把手教大家搭建一个djangovue的前后端分离的自动化测试平台 一、前提条件 安装Python安装Node.js和npm&#xff08;或者yarn&#xff09;安装MySQL数据库安装Git 二、目录结构 project-root/├── backend…