首页 > 编程语言 >C++9--前置++和后置++重载,const,日期类的实现(对前几篇知识点的应用)

C++9--前置++和后置++重载,const,日期类的实现(对前几篇知识点的应用)

时间:2024-12-18 12:27:48浏览次数:5  
标签:知识点 const ++ month int Date day

目录

1.前置++和后置++重载

2.const成员

3.日期类的实现


1.前置++和后置++重载

#include<iostream>
using namespace std;

class Date
{
public:
	Date(int year = 2024, int month = 1, int day = 1)
	{
		_year = year;
		_month = month;
		_day = day;
	}
	//前置++:返回+1之后的结果
	//注意:this指向的对象函数结束后不会销毁,故以引用方式返回提高效率
	Date& operator++()
	{
		_day += 1;
		return *this;
	}
	//后置++:
	//前置++和后置++都是一元运算符,为了让前置++与后置++形成能正确的重载
	//C++规定:后置++重载时多增加一个int类型的参数,但调用函数时该参数不用传递,编译器自动传递
	//注意:后置++是先使用后+1,因此需要返回+1之前的旧值,故需在是实现时需要先将this保存一份
	//,然后给this+1
	//而temp是临时对象,因此只能以值的方式返回,不能返回引用
	Date operator++(int)
	{
		Date temp = *this;
		_day += 1;
		return temp;
	}
private:
	int _year;
	int _month;
	int _day;
};

int main()
{
	Date d;
	Date d1(2022, 1, 13);
	d = d1++;//d:2022,1,13   d1:2022,1,14
	d = ++d1;//d:2022,1,15   d1:2022,1,15
	return 0;
}

2.const成员

将const修饰的”成员函数“称之为const成员函数,const修饰类成员函数,实际修饰该成员函数隐含的this指针,表明在该成员函数中不能对类的任何成员进行修改。

在日期类的实现里面具体应用

3.日期类的实现

//Date.h
#pragma once
#include<iostream>
#include<assert.h>
using namespace std;

class Date
{   //友元
	friend ostream& operator<<(ostream& out, const Date& d);
	friend istream& operator>>(istream& in, Date& d);

public:
	//全缺省构造函数
	Date(int year = 1, int month = 1, int day = 1);
	void Print()const
	{
		cout << _year << "-" << _month << "-" << _day << endl;
	}
	//拷贝构造函数
	Date(const Date& d)
	{
		_year = d._year;
		_month = d._month;
		_day = d._day;
	}

	//运算符重载
	bool operator<(const Date& x)const;
	bool operator==(const Date& x)const;
	bool operator<=(const Date& x)const;
	bool operator>(const Date& x)const;
	bool operator>=(const Date& x)const;
	bool operator!=(const Date& x)const;

	//获取某年某月的天数
	int GetMonthDay(int year, int month);

	//日期+=天数
	Date& operator+=(int day);
	//日期+天数
	Date operator+(int day)const;
	//日期-=天数
	Date& operator-=(int day);
	//日期-天数
	Date operator-(int day)const;
	//前置++
	Date& operator++();
	//后置++
	Date operator++(int);
	//前置--
	Date& operator--();
	//后置--
	Date operator--(int);
	//日期-日期 返回天数
	int operator-(const Date& d)const;
	//流插入不能写成成员函数?
	//因为Date对象默认占用第一个参数,就是做了左操作数
	//写出来就一定是下面这个样子,不符合使用习惯
	//d1 << cout;  //d1.operator<<(cout);
	//void operator<<(ostream& out);


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

ostream& operator<<(ostream& out, const Date& d);
istream& operator>>(istream& in, Date& d);


//Date.cpp
#include"Date.h"
Date::Date(int year, int month, int day)
{
	if (month > 0 && month < 13
		&& day > 0 && day<=GetMonthDay(year,month))
	{
		_year = year;
		_month = month;
		_day = day;
	}
	else
	{
		cout << "非法日期" << endl;
		assert(false);
	}
}
bool Date::operator<(const Date& x)const
{
	if (_year < x._year)
	{
		return true;
	}
	else if (_year == x._year && _month < x._month)
	{
		return true;
	}
	else if (_year == x._year && _month == x._month && _day < x._day)
	{
		return true;
	}

	return false;
}

bool Date::operator==(const Date& x)const
{
	return _year == x._year
		&& _month == x._month
		&& _day == x._day;
}
bool Date::operator<=(const Date& x)const
{
	return *this < x || *this == x;
}

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

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

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

int Date::GetMonthDay(int year, int month)
{
	static int daysArr[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;
	}
	else
	{
		return daysArr[month];
	}
}

Date& Date::operator+=(int day)
{
	if (day < 0)
	{
		return *this -= -day;
	}
	_day += day;
	while (_day > GetMonthDay(_year, _month))
	{
		_day -= GetMonthDay(_year, _month);
		++_month;
		if (_month == 13)
		{
			_month = 1;
			++_year;
		}
	}
	return *this;
}

Date Date::operator+(int day)const
{
	Date tmp(*this);
	tmp += day;
	return tmp;
}

Date& Date::operator-=(int day)
{
	if (day < 0)
	{
		return *this += _day;
	}

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

Date Date::operator-(int day)const
{
	Date tmp = *this;
	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-(const Date& d)const
{
	Date max = *this;
	Date min = d;
	int flag = 1;
	if (*this < d)
	{
		max = d;
		min = *this;
		flag = -1;
	}

	int n = 0;
	while (min != max)
	{
		++min;
		++n;
	}

	return n * flag;
}

ostream& operator<<(ostream& out, const Date& d)
{
	out << d._year << "年" << d._month << "月" << d._day << "日" << endl;
	return out;
}

istream& operator>>(istream& in, Date& d)
{
	int year, month, day;
	in >> year >> month >> day;
	
	if (month > 0 && month < 13
		&& day>0 && day <= d.GetMonthDay(year, month))
	{
		d._year = year;
		d._month = month;
		d._day = day;
	}
	else
	{
		cout << "非法日期" << endl;
		assert(false);
	}
	return in;
}

标签:知识点,const,++,month,int,Date,day
From: https://blog.csdn.net/2301_78702440/article/details/144545680

相关文章

  • 12C++循环结构-for循环(2)
    一、循环变量为字符型试编一程序,按字典顺序输出26个字母。流程图:程序代码如下:#include<iostream>//包含输入输出流头文件iostreamusingnamespacestd;//指明程序使用命名空间std(标准)intmain(){chari;for(i='a';i<='z';i++)//循环变量可以是整数,也......
  • 第一章 从C到C++(二)
    知识图谱Array类模版1.基本语法 #include<array>std::array<T,N>array_name;T 是数组中元素的类型。N 是数组的大小,必须是一个非负整数。2.声明与初始化<array> 需要在编译时确定大小,不能动态改变。使用示例:在声明中用初始化列表初始化array对象#include......
  • 前置++与后置++的区别
    前置++与后置++都是对变量值进行+1类似于a=a+1 但他们的区别就在于前置后置关系我们先来看后置++ 后置++就是先使用变量再对变量进行+1我们来给出一个代码举例↓#include<stdio.h>intmain(){ inta=10; intb=a++;//后置++是先使用再++ printf("%d%d"......
  • JavaScript中的var、let和const:变量声明的演变与最佳实践
    在JavaScript中,变量声明是编程的基础。随着ECMAScript6(ES6)的发布,引入了let和const关键字,使得变量声明更加灵活和安全。本文将探讨var、let和const的区别,并通过示例代码展示它们的用法。1.var关键字var是JavaScript中最古老的变量声明方式。它的作用域是函数作用域或全......
  • C++中出了作用域如何释放内存
    在C++中,是否会在作用域结束后自动释放内存,取决于内存的分配方式:1.栈内存分配如果变量是在 栈(stack)上分配的,那么当变量超出其作用域时,内存会自动释放。示例:栈上分配#include<iostream>usingnamespacestd;voidfunc(){inta=42;//栈上分配cout<<a<......
  • Memory Leak Detector:C++内存泄漏常见原因分析_2024-07-23_09-29-09.Tex
    MemoryLeakDetector:C++内存泄漏常见原因分析C++内存管理基础动态内存分配与释放在C++中,动态内存管理是通过new和delete操作符来实现的。new操作符用于在运行时分配内存,而delete操作符用于释放之前分配的内存。理解动态内存分配与释放的机制对于避免内存泄漏至关重要。......
  • C/C++语言基础--C++STL库=之仿函数、函数对象、bind、function简介
    本专栏目的更新C/C++的基础语法,包括C++的一些新特性前言STL无疑是C++史上一个重要的发明,未来我将更新STL有关的知识点,入门绝对够了(看目录就知道了......
  • c++实验六
    task4:Vector.hpp:1#pragmaonce2#include<iostream>3#include<stdexcept>4usingnamespacestd;56template<typenameT>7classVector8{9private:10intsize;11T*ptr;12public:13Vector(......
  • c++:STL:string
    1.STL简介1.1什么是STLSTL(standardtemplatelibaray-标准模板库):是C++标准库的重要组成部分,不仅是一个可复用的组件库,而且是一个包罗数据结构与算法的软件框架。1.2STL的六大组件STL有六大组件,其中现在最重要的是容器和算法两类,容器其实就是数据结构2.......
  • C++从零到进阶 ④.1数组(介绍)
    本次是【C++从零到进阶】的第④课(介绍):数组介绍我们一个个来介绍提示:介绍单吃很难吃透,需要结合后续练习跟进才能做到掌握哦!新手食用:看目录更好找重点,!为重要或较详细内容一、数组的概念、定义与引用数组名的命名规则与变量名的命名规则一致;整型表达式表示数组元素的个数......