C++:类之六脉神剑——默认成员函数

news2024/11/17 17:34:28

 

个人主页:日刷百题

系列专栏〖C/C++小游戏〗〖Linux〗〖数据结构〗 〖C语言〗

🌎欢迎各位点赞👍+收藏⭐️+留言📝 

一、默认成员函数

如果一个类中什么成员都没有,简称为 空类
空类中真的什么都没有吗?并不是,任何类在什么都不写时,编译器会自动生成以下 6个默认成员
函数
  • 默认成员函数:用户没有显式实现,编译器会生成的成员函数称为默认成员函数。

  • 构造函数(Constructor):当创建一个新的对象实例时,会调用构造函数。它用于初始化对象的状态。
  • 析构函数(Destructor):当对象被销毁时调用,用于执行清理工作,如关闭文件、释放内存等。
  • 拷贝构造函数(Copy Constructor):用于创建一个新对象,其内容与另一个现有对象相同。
  • 赋值重载:把一个对象赋值给另一个对象;
  • 取地址重载普通对象取地址操作;
  • 取地址重载(const):const对象取地址操作;

本章我们将学习六个个默认成员函数


二、构造函数 

2.1  概念

typedef int dataOfStackType;

typedef struct stack
{
	dataOfStackType* a;
	int top;
	int capacity;
}stack;

void StackInit(stack* ps);
//...

 int main()
 {
	 stack s;
	 StackInit(&s);
	 //...
	 return 0;
 }
  •  对于Date类,可以通过 Init 公有方法给对象设置日期,但如果每次创建对象时都调用该方法设置信息,未免有点麻烦,那能否在对象创建时,就将信息设置进去呢?

构造函数是一个特殊的成员函数,名字与类名相同,创建类类型对象时由编译器自动调用,以保证每个数据成员都有 一个合适的初始值,并且在对象整个生命周期内只调用一次


 2.2  特性

构造函数是一个特殊的成员函数。构造函数虽然叫作构造,但是其主要作用并不是开辟空间创建对象,而是初始化对象

构造函数之所以特殊,是因为相比于其它成员函数,它具有如下特性

  • 函数名与类名相同;
  • 无返回值;
  • 对象实例化时,编译器自动调用对应的构造函数;
  • 构造函数可以重载;
class Date
{
public:
	//无参的构造函数
	Date()
	{};
	//带参的构造函数
	Date(int year,int month,int day)
	{
		_year = year;
		_month = month;
		_day = day;
	}

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

void TestDate()
{
	Date d1;//调用无参构造函数(自动调用)
	Date d2(2023, 3, 29);//调用带参构造函数(自动调用)
}
 注意:
      如果通过无参构造函数创建对象时,对象后面不用跟括号,否则就成了函数声明    。

 错误示范:

     Date d3();
    // 以上代码的函数:声明了d3函数,该函数无参,返回一个日期类型的对象
     // warning C4930: “Date d3(void)”: 未调用原型函数
  •  如果类中没有显式定义构造函数,则C++编译器会自动生成一个无参的默认构造函数,一旦用户显式定义编译器将不再生成。 
class Date
{
public:
	//若用户没有显示定义,则编译器自动生成。
	/*Date(int year,int month,int day)
	{
		_year = year;
		_month = month;
		_day = day;
	}*/

private:
	int _year;
	int _month;
	int _day;
};
 int main()
 {
 Date d1;
 return 0;
 }
解析:
  1. 将Date类中构造函数屏蔽后,代码可以通过编译,因为编译器生成了一个无参的默认构造函 数
  2. 将Date类中构造函数放开,代码编译失败,因为一旦显式定义任何构造函数,编译器将不再 生成
  3. 无参构造函数,放开后报错:error C2512: “Date”: 没有合适的默认构造函数可用

  •  默认生成构造函数,对内置类型成员不作处理;对自定义类型成员,会调用它的默认构造函数

      C++把类型分成内置类型(基本类型)和自定义类型。内置类型就是语言提供的数据类型,  如:int、char、double…,自定义类型就是我们使用class、struct、union等自己定义的类型。

class Time
{
public:
	Time()
	{
		cout << "Time()" << endl;
		_hour = 0;
		_minute = 0;
		_second = 0;
	}
private:
	int _hour;
	int _minute;
	int _second;
};
class Date
{
public:
	void print()
	{
		cout << _year << "-" << _month << "-" << _day << endl;
	}

private:
	// 基本类型(内置类型)
	int _year;
	int _month;
	int _day;
	// 自定义类型
	Time _t;

	
};
int main()
{
	Date d;
	d.print();
	return 0;
}

由上可以看出:默认构造函数未对内置类型做处理;但是默认构造函数对自定义成员_t做了处理,调用了它的默认构造函数Time()

注意:
         C++11 中针对内置类型成员不初始化的缺陷,又打了补丁,即: 内置类型成员变量在
类中声明时可以给默认值

举例如下:

class Date
{
public:
//...
	void print()
	{
		cout << _year << "-" << _month << "-" << _day << endl;
	}
private:
	//使用默认值
	int _year = 0;
	int _month = 0;
	int _day = 0;
};
void TestDate2()
{
	Date d2;
	d2.print();
}

  •   无参的构造函数和全缺省的构造函数都称为默认构造函数,并且默认构造函数只能有一个。
#include<iostream>
using namespace std;
class Date
{
public:
	//无参的默认构造函数
	Date()
	{

	}

	//全缺省的默认构造函数
	Date(int year = 0, int month = 0, int day = 0)
	{
		_year = year;
		_month = month;
		_day = day;
	}
	void print()
	{
		cout << _year << "-" << _month << "-" << _day << endl;
	}

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

// 以下测试函数能通过编译吗?
void Test()
{
	Date d1;
}

结果: 

默认构造函数:

  1. 无参的构造函数
  2. 全缺省的构造函数
  3. C++编译器生成的无参的构造函数

即三种必须要有一种,如果没有默认的构造函数(写的构造函数不是无参的,也不是全缺省的)就会报错。

我们这里推荐写全缺省构造函数(方便+万全)


三、析构函数

3.1 概念

析构函数构造函数功能相反,析构函数不是完成对对象本身的销毁,局部对象销毁工作是由编译器完成的。而对象在销毁时会自动调用析构函数,完成对象中资源的清理工作

栈桢的销毁和开辟不归我们管,我们只管堆上的空间的开辟和销毁,而析构函数主要运用于自动调用销毁堆上的空间

析构函数不像构造函数一样每个类都需要,更多的是像栈这样在堆上动态开辟空间的类需要,

有了析构函数,我们再也不用担心创建对象(或定义变量)后由于忘记释放内存而造成内存泄漏了。

3.2 特性

  • 析构函数名是在类名前加上字符 ~
  • 无参数;
  • 无返回值;
  • 一个类只能有一个析构函数。若未显式定义,系统会自动生成默认的析构函数;
  • 析构函数不能重载;
  •  对象生命周期结束时,C++编译系统系统自动调用析构函数。

举例:

class Date
{
public:
	Date()
	{
		cout << "Date()" << endl;
	}
	~Date()
	{
		cout << "~Date()" << endl;
	}
private:
	int _year = 0;
	int _month = 0;
	int _day = 0;
};

void TestDate3()
{
	Date d3;
	//d3生命周期结束时自动调用构造函数
}

结果:

  • 编译器生成的默认析构函数,对自定类型成员调用它的析构函数,对内置类型不做处理;
#include<iostream>
using namespace std;
 
class Time
{
public:
	~Time()
	{
		cout << "~Time()" << endl;
	}
private:
	int _hour;
	int _minute;
	int _second;
};
class Date
{
private:
	// 基本类型(内置类型)
	int _year = 1970;
	int _month = 1;
	int _day = 1;
	// 自定义类型
	Time _t;
};
int main()
{
	Date d; 
	return 0;
}

解析:

内置类型成员,销毁时不需要资源清理,最后系统直接将其内存回收即可;而_t是Time类对 象,所以在d销毁时,要将其内部包含的Time类的_t对象销毁,所以要调用Time类的析构函数。但是main函数中不能直接调用Time类的析构函数,实际要释放的是Date类对象,所以编译器会调用Date类的析构函数,而Date没有显式提供,则编译器会给Date类生成一个默认的析构函数,目的是在其内部 调用Time 类的析构函数,即当Date对象销毁时,要保证其内部每个自定义对象都可以正确销毁 。

  • 如果类中没有申请资源时,析构函数可以不写,直接使用编译器生成的默认析构函数,比如Date类;有资源申请时,一定要写,否则会造成资源泄漏,比如stack类。
  • 析构函数调用的顺序:局部变量(先定义后析构)--->局部静态--->全局(静态)对象(先定义后析构)

四、拷贝构造函数

4.1 概念

拷贝构造函数:只有单个形参,该形参是对本类类型对象的引用(一般常用const修饰),在用已存在的类类型对象创建新对象时由编译器自动调用。

  • 拷贝构造函数的功能就如同它的名字——拷贝。我们可以用一个已存在的对象来创建一个与已存在对象一模一样的新的对象
int main()
{
	Date d1(2023, 7, 21);
	Date d2(d1);
//	Date d2 = d1;//等价上面的写法
 
    return 0;
}

4.2 特性

拷贝构造函数也是特殊的成员函数,其特征如下:

1. 拷贝构造函数是构造函数的一个重载形式。

2. 拷贝构造函数的参数只有一个且必须是类类型对象的引用,使用传值方式编译器直接报错,因为会引发无穷递归调用。

class Date
{
public:
 Date(int year = 1900, int month = 1, int day = 1)
 {
 _year = year;
 _month = month;
 _day = day;
 }
 // Date(const Date& d)   // 正确写法
    Date(const Date d)   // 错误写法:编译报错,会引发无穷递归
 {
 _year = d._year;
 _month = d._month;
 _day = d._day;
 }
private:
 int _year;
 int _month;
 int _day;
};
int main()
{
 Date d1;
 Date d2(d1);
 return 0;
}
  • 当拷贝构造函数的参数采用传值的方式时,创建对象d2,会调用它的拷贝构造函数d1会作为实参传递给形参d。不巧的是,实参传递给形参本身又是一个拷贝,会再次调用形参的拷贝构造函数…如此便会引发无穷的递归。

 

3. 若未显式定义,编译器会生成默认的拷贝构造函数。 默认的拷贝构造函数对象按内存存储按字节序完成拷贝,这种拷贝叫做浅拷贝,或者值拷贝

class Date
{
public:
	//构造函数
	Date(int year = 0, int month = 0, int day = 0)
	{
		//cout << "Date()" << endl;
		_year = year;
		_month = month;
		_day = day;
	}
	//未显式定义拷贝构造函数
	/*Date(const Date& d)
	{
		_year = d._year;
		_month = d._month;
		_day = d._day;
	}*/
	void print()
	{
		cout << _year << "-" << _month << "-" << _day << endl;
	}
private:
	int _year = 0;
	int _month = 0;
	int _day = 0;
};

void TestDate()
{
	Date d1(2023, 3, 31);
	//调用拷贝构造创建对象
	Date d2(d1);
	d2.print();
}

注意:在编译器生成的默认拷贝构造函数中,内置类型是按照字节方式直接拷贝的,而自定义类型是调用其拷贝构造函数完成拷贝的。

4. 类中如果没有涉及资源申请时,拷贝构造函数写不写都可以;一旦涉及到资源申请时,则拷贝构造函数是一定要写的,否则就是浅拷贝

#include<iostream>
#include<assert.h>
using namespace std;
 
typedef int DataType;
class stack {
public:
	stack(size_t capacity = 4) {
		_a = (int*)malloc(sizeof(int) * capacity);
		assert(_a);
		_capacity = capacity;
		_size = 0;
	}
	void push(DataType x) {
		//...
		_a[_size] = x;
		_size++;
	}
	bool Empty() {
		return _size == 0;
	}
	DataType top() {
		return _a[_size - 1];
	}
	void pop() {
		_size--;
	}
	~stack(){
		cout << "~stack()" << endl;
		if (_a)
		{
			free(_a);
			_a = nullptr;
		}
		_size = _capacity = 0;
	}
private:
	int* _a;
	int _capacity;
	int _size;
};
int main() {
	stack st1;
	st1.push(1);
	st1.push(2);
	st1.push(3);
	stack st2(st1);
	return 0;
}

注意:

这段程序的运行结果是程序崩溃了, 两对象的生命周期结束时自动调用析构函数,也就意味着s2先调用默认析构,调用~stack()释放st2指针所指空间,指针置为nullptr;但是,st2所指空间释放不影响st1指针的所指空间仍为已经释放的空间,导致st1变成野指针,此时再次调用析构函数但是同一块空间不能释放2次,所以有些时候默认拷贝函数(值拷贝)会导致程序出错。

  • 编译器自动生成的拷贝构造函数是浅拷贝

问题:那我们如何解决上诉问题呢?

  • 自己实现拷贝构造函数,实现深拷贝

#include<iostream>
#include<assert.h>
using namespace std;
 
typedef int DataType;
class stack {
public:
	stack(size_t capacity = 4) {
		DataType* _a = (DataType*)malloc(sizeof(DataType) * capacity);
		assert(_a);
		_capacity = capacity;
		_size = 0;
	}
	stack(const stack& st) {
		DataType* tmp = (DataType*)malloc(sizeof(DataType) * st._capacity);
		assert(tmp);
		memcpy(tmp, _a, sizeof(DataType) * st._size);
		_a = tmp;
		_size = st._size;
		_capacity = st._capacity;
	}
	void push(DataType x) {
		//...
		_a[_size] = x;
		_size++;
	}
	bool Empty() {
		return _size == 0;
	}
	DataType top() {
		return _a[_size - 1];
	}
	void pop() {
		_size--;
	}
	~stack(){
		cout << "~stack()" << endl;
		if (_a)
		{
			free(_a);
			_a = nullptr;
		}
		_size = _capacity = 0;
	}
private:
	int* _a;
	int _capacity;
	int _size;
};
int main() {
	stack st1;
	stack st2(st1);
	return 0;
}


5. 拷贝构造函数典型调用场景

  • 使用已存在对象创建新对象;
  • 函数参数类型为类类型对象;
  • 函数返回值类型为类类型对象。
class Date
{
public:
	Date(int year, int minute, int day)
	{
		cout << "Date(int,int,int):" << this << endl;
	}
	Date(const Date& d)
	{
		cout << "Date(const Date& d):" << this << endl;
	}
	~Date()
	{
		cout << "~Date():" << this << endl;
	}
private:
	int _year;
	int _month;
	int _day;
};
Date Test(Date d)
{
	Date temp(d);
	return temp;
}
int main()
{
	Date d1(2022, 1, 13);
	Test(d1);
	return 0;
}

为了提高程序效率,一般对象传参时,尽量使用引用类型,返回时根据实际场景,能用引用尽量使用引用


五、赋值运算符重载

5.1 运算符重载

5.1.1 概念

C++为了增强代码的可读性引入了运算符重载,运算符重载是具有特殊函数名的函数,也具有其返回值类型,函数名字以及参数列表,其返回值类型与参数列表与普通的函数类似。

运算符重载的目的:让自定义类型像内置类型一样使用运算符

运算符重载结构: 返回值类型     operator操作符(参数列表)

例如

//类成员函数
bool operator==(Date &d2);
5.1.2 特性

 运算符重载有如下特性:

  • 重载操作符必须有一个类类型参数
  • 不能通过连接其他符号来创建新的操作符:比如operator@、operator?等;
  • 用于内置类型的运算符,其含义不能改变,例如:int类型的+,不能改变其含义;
  • 作为类成员函数重载时,其形参看起来比操作数数目少1,因为成员函数的第一个参数为隐藏的this;
  • .*  ::  sizeof  ?:  .注意以上5个运算符不能重载。这个经常在笔试选择题中出现。

有了上述的特性描述,我们还可以实现== 、<、 >、 <=、 >=、 +、 -、 ++、 --、等一系列操作符的重载。

下面实现运算符==、< 

#include<iostream>
using namespace std;
 
class Date {
public:
	Date(int year = 2024, int month = 2, int day = 8) {
		_year = year;
		_month = month;
		_day = day;
	}
	bool operator==(const Date& y) {
		return _year == y._year
			&& _month == y._month
			&& _day == y._day;
	}
	bool operator<(const Date& y) {
		if (_year < y._year) {
			return true;
		}
		else if (_year == y._year) {
			if (_month < y._month)
				return true;
			else if (_month == y._month)
				return _day < y._day;
		}
		return false;
	}
private:
	int _year;
	int _month;
	int _day;
};
int main() {
	Date d1(2024,2,1);
	Date d2(2024, 2, 3);
	cout << (d1 == d2) << endl;
	cout << (d1 < d2) << endl;
	return 0;
}


5.2  赋值运算符重载

5.2.1 概念

与之前讲的构造函数析构函数等默认成员函数相同,赋值运算符重载也属于6个默认成员函数之一。作为与众不同的默认成员函数。

5.2.2 特性

其有以下特性

1、赋值运算符重载格式:
参数类型const T&,传递引用可以提高传参效率;
返回值类型T&,返回引用可以提高返回的效率,有返回值目的是为了支持连续赋值检测是否自己给自己赋值;
返回*this
 :要复合连续赋值的含义;

#include<iostream>
using namespace std;
class Date {
public:
	Date(int year = 2024, int month = 2, int day = 8) {
		_year = year;
		_month = month;
		_day = day;
	}
	Date(const Date& d)
	{
		_year = d._year;
		_month = d._month;
		_day = d._day;
	}
 
	Date& operator=(const Date& d)
	{
		if (this != &d)//防止自己给自己赋值
		{
			_year = d._year;
			_month = d._month;
			_day = d._day;
		}
 
		return *this;
	}
private:
	int _year;
	int _month;
	int _day;
};
int main() {
	Date d1(2024, 2, 1);
	Date d2;
	d2 = d1;//赋值操作
	return 0;
}

2、赋值运算符只能重载成类的成员函数不能重载成全局函数 

namespace Aron
{
    class Date
	{
		//...
	};
}
// 赋值运算符重载成全局函数,注意重载成全局函数时没有this指针了,需要给两个参数
Date& operator=(Date& left, const Date& right)
{
	if (&left != &right)
	{
		left._year = right._year;
		left._month = right._month;
		left._day = right._day;
	}
	return left;
}

上面程序会出现编译错误 :error C2801: “operator =”必须是非静态成员

出错原因是:赋值运算符如果不显式实现,编译器会生成一个默认的。此时用户再在类外自己实现一个全局的赋值运算符重载,就和编译器在类中生成的默认赋值运算符重载冲突了,故赋值运算符重载只能是类的成员函数。

简而言之,全局写一个,类里面没写,编译器自动生成一个,那到底调用哪一个?---产生歧义

3.、用户没有显式实现时,编译器会生成一个默认赋值运算符重载,以值的方式逐字节拷贝。

注意:内置类型成员变量是直接赋值的,而自定义类型成员变量需要调用对应类的赋值运算符重载完成赋值。如果类中未涉及到资源管理,赋值运算符是否实现都可以;一旦涉及到资源管理则必须要实现。

这里赋值重载与拷贝构造函数的特性非常相似。

但是注意区分拷贝构造函数赋值运算符重载函数的使用场景:

Date d1(2024, 1, 1);
Date d2(d1);
Date d3 = d1;

 Date d1(2024, 1, 1)调用的是构造函数; Date d2(d1)调用的是拷贝构造函数Date d3 = d1不是赋值运算符重载函数,第三句代码也是拷贝构造函数。

拷贝构造函数:用一个已经存在的对象去构造初始化另一个即将创建的对象。
赋值运算符重载函数:在两个对象都已经存在的情况下,将一个对象赋值给另一个对象。


六、取地址操作符重载

6个默认成员函数只剩两个——取地址重载与const取地址重载。但是,这两个函数实在没有实现的必要,因为我们自己实现与编译器自动实现出来的效果是一样的。

class Date
{
public:
	Date* operator&()
	{
		return this;
	}
	const Date* operator&()const
	{
		return this;
	}
private:
	int _year; // 年
	int _month; // 月
	int _day; // 日
};

七、const成员

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

 

请思考下面的几个问题:

1. const对象可以调用非const成员函数吗?不可以,权限的放大

2. 非const对象可以调用const成员函数吗?可以,权限的缩小

3. const成员函数内可以调用其它的非const成员函数吗?不可以,权限的放大

4. 非const成员函数内可以调用其它的const成员函数吗?可以,权限的缩小

总结:

成员函数,如果是一个只对成员变量进行读访问的函数,建议在后面加const,const和非const对象都可以调用。

成员函数,如果是一个只对成员变量进行读+写访问的函数,不能在后面加const,否则不能修改this

注意:权限放大不允许,权限缩小允许;指针和引用赋值才存在权限放大


八、日期类的实现

我们总结上文中的运算符重载,整理一下完整的日期类的实现。此处我们使用多文件的形式实现日期计算器

  • Date.h文件中进行头文件包含命名空间展开类的声明内联函数定义等;
  • Date.cpp文件中进行对类成员函数的定义。

 8.1 Date.h

#include<iostream>
#include<assert.h>
using namespace std;
class Date {
public:
	//构造函数
	Date(int year = 1, int month = 1, int day = 1);

	//拷贝构造
	Date(const Date& d);

	
	//获取天数
	int GetDate(int year, int month) 
	{
		assert(month > 0 && month < 13);
		const static int a[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 a[month];
	}
	//日期比较
	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;
	
	// 日期+=天数
	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--(int);
	
	// 前置--
	Date& operator--();

	//赋值运算符重载
	Date& operator=(const Date& d);
	
	// 日期-日期 返回天数
	int operator-(const Date& d) const;
	
	//日期合法检查
	bool CheckInvalid() ;

	//友元函数声明
	friend ostream& operator<<(ostream& out, const Date& d);//流插入操作符重载
	friend istream& operator>>(istream& in, Date& d);//流提取操作符重载


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

 8.2 Date.cpp

#define _CRT_SECURE_NO_WARNINGS
#include"Date.h"

Date::Date(int year, int month, int day)
{
	_year = year;
	_month = month;
	_day = day;
	if (!CheckInvalid())
	{
		cout<<"日期不合法"<<endl;
	}
}

Date::Date(const Date& d)
{
		_year = d._year;
		_month = d._month;
		_day = d._day;
	
}

bool Date::operator==(const Date& d)  const
{
	return _year == d._year && _month == d._month && _day == d._day;
}

bool Date::operator<(const Date& d)   const
{
	if (_year < d._year)
	{
		return true;
	}
	else if (_year == d._year)
	{
		if (_month < d._month)
		{
			return true;
		}
		else if (_month == d._month)
		{
			return  _day < d._day;
		}
	}
	return false;
}
bool Date:: operator>(const Date& d)    const
{
	return !(*this == d || *this < d);
}

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 || *this == d);
}

// 日期+=天数
Date& Date::operator+=(int day)//本身要改变--->&返回
{
	if (day < 0)
	{
		return *this -= (-day);
	}
	_day += day;
	while (_day > GetDate(_year, _month))
	{
		_day -= GetDate(_year, _month);
		++_month;
		if (_month == 13)
		{
			++_year;
			_month = 1;
		}
		
	} 
	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)
		{
			--_year;
			_month = 12;
		}
		_day += GetDate(_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;
}

//赋值运算符重载
Date& Date::operator=(const Date& d) 
{
	if(*this != d)
	{
		_year = d._year;
		_month = d._month;
		_day = d._day;
	}
	return *this;
}
// 日期-日期 返回天数
int Date::operator-(const Date& d) const
{
	Date max = *this;//拷贝构造
	Date min = d;
	int flag = 1;
	if (max < min)
	{
		Date tmp = max;//拷贝构造
		max = min;//赋值
		min = tmp;//赋值
		flag = -1;
	}
	int n = 0;
	while (min != max)
	{
		++min;
		++n;
	}
	return n*flag;
}
//日期合法检查
bool Date::CheckInvalid() 
{
	if (_year < 0 || _month < 1 || _month>13 || _day<1 || _day>GetDate(_year, _month))
	{
		return false;
	}
	else
	{
		return true;
	}
}


//友元函数声明
ostream& operator<<(ostream& out, const Date& d)//流插入操作符重载
{
	out << d._year << d._month << d._day << endl;
	return out;
}
istream& operator>>(istream& in, Date& d)//流提取操作符重载
{
	while (1)
	{
		in >> d._year >> d._month >> d._day;
		if (d.CheckInvalid())
		{
			break;
		}
		else
		{
			cout << "输入非法日期,请重新输入" << endl;
		}
	}
	return in;
}

希望大家阅读完可以有所收获,同时也感谢各位铁汁们的支持。文章有任何问题可以在评论区留言,百题一定会认真阅读!

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

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

相关文章

linux最佳入门(笔记)

1、内核的主要功能 2、常用命令 3、通配符&#xff1a;这个在一些启动文件中很常见 4、输入/输出重定向 意思就是将结果输出到别的地方&#xff0c;例如&#xff1a;ls标准会输出文件&#xff0c;默认是输出到屏幕&#xff0c;但是用>dir后&#xff0c;是将结果输出到dir文…

复习 --- windows 上安装 git,使用相关命令

文章目录 很少使用windows的git工具&#xff0c;这次借助这个任务&#xff0c;记录下使用过程&#xff0c;其他的等有空在整理。 其中&#xff0c;还使用了浏览器的AI小助手&#xff0c;复习了git相关的命令&#xff1a;图片放最后

Python中字符串知识点汇总,以及map()函数的使用

1.字符串的定义 字符串&#xff1a;字符串就是一系列字符。在python中&#xff0c;用引号括起来的都是字符串&#xff0c;其中的引号可以是单引号&#xff0c;也可以是双引号。 2.使用方法修改字符串的大小写 ①将字符串的字母全部改为大写&#xff1a;upper()函数 实例&…

集合系列(四) -LinkedHashMap详解

一、摘要 在集合系列的第一章&#xff0c;咱们了解到&#xff0c;Map的实现类有HashMap、LinkedHashMap、TreeMap、IdentityHashMap、WeakHashMap、Hashtable、Properties等等。 本文主要从数据结构和算法层面&#xff0c;探讨LinkedHashMap的实现。 二、简介 LinkedHashMap可…

欧科云链:ETH Dencun升级倒计时,哪些数据需要重点关注?

2024年3月13日 21:55&#xff08;epoch 269,568&#xff09;&#xff0c;以太坊将完成坎昆-德内布升级 &#xff08;Dencun 升级&#xff09;&#xff0c;OKLink 专题数据页传送门 &#x1f449; oklink.com/eth/dencun-upgrade 此次升级的主要目标是提升 Layer 2 网络的可扩展…

排序链表的三种写法

题目链接&#xff1a;https://leetcode.cn/problems/sort-list/?envTypestudy-plan-v2&envIdtop-100-liked 第一种&#xff0c;插入排序&#xff0c;会超时 class Solution {public ListNode sortList(ListNode head) {//插入排序&#xff0c;用较为简单的方式解决ListNo…

实现MySQL分页查询的三种方式~

首先我们先来查看一下表中的所有数据&#xff1a; select * from user;如下所示&#xff0c;有5条&#xff1a; 第一种方法&#xff1a; 使用LIMIT和OFFSET关键字 -- 从第1条开始取3条记录&#xff08;第一页&#xff09; SELECT * FROM user LIMIT 3 OFFSET 0; 输出如下所…

RTP 控制协议 (RTCP) 反馈用于拥塞控制

摘要 有效的 RTP 拥塞控制算法&#xff0c;需要比标准 RTP 控制协议(RTCP)发送方报告(SR)和接收方报告(RR)数据包提供的关于数据包丢失、定时和显式拥塞通知 (ECN) 标记的更细粒度的反馈。 本文档描述了 RTCP 反馈消息&#xff0c;旨在使用 RTP 对交互式实时流量启用拥塞控制…

Hack The Box-Jab

目录 信息收集 nmap enum4linux 服务信息收集 Pidgin kerbrute hashcat 反弹shell & get user 提权 系统信息收集 端口转发 漏洞利用 get root 信息收集 nmap 端口探测┌──(root㉿ru)-[~/kali/hackthebox] └─# nmap -p- 10.10.11.4 --min-rate 10000 -oA…

Linux中udp服务端,客户端的开发

UDP通信相关函数&#xff1a; ssize_t recvfrom(int sockfd, void *buf, size_t len, int flags, struct sockaddr *src_addr, socklen_t *addrlen); 函数说明&#xff1a;接收信息 参数说明&#xff1a;sockfd:套接字buf:要接收的缓冲区len:缓冲区…

UCORE 清华大学os实验 lab0 环境配置

打卡 lab 0 &#xff1a; 环境配置 &#xff1a; 首先在ubt 上的环境&#xff0c;可以用虚拟机或者直接在windows 上面配置 然后需要很多工具 如 qemu gdb cmake git 就是中间犯了错误&#xff0c;误以为下载的安装包&#xff0c;一直解压不掉&#xff0c;结果用gpt 检查 结…

基于springboot实现小区物业管理系统项目【项目源码+论文说明】

基于springboot实现小区物业管理系统演示 摘要 随着城镇人口居住的集中化加剧 &#xff0c;传统人工小区管理模式逐渐跟不上时代的潮流。这就要求我们提供一个专门的管理系统。来提高物管的工作效率、为住户提供更好的服务。 物业管理系统运用现代化的计算机管理手段,使物业的…

应用程序开发教学:医保购药系统源码搭建实战

医保购药系统作为医疗服务的重要组成部分&#xff0c;其开发不仅能够为患者提供更加便捷的购药服务&#xff0c;还能够提高医疗机构的管理效率。接下来&#xff0c;小编将为您讲解医保购药系统的源码搭建过程&#xff0c;介绍应用程序开发的基本步骤和技巧。 一、系统设计 我…

手搭手RocketMQ重试机制

环境介绍 技术栈 springbootmybatis-plusmysqlrocketmq 软件 版本 mysql 8 IDEA IntelliJ IDEA 2022.2.1 JDK 17 Spring Boot 3.1.7 dynamic-datasource 3.6.1 mybatis-plus 3.5.3.2 rocketmq 4.9.4 加入依赖 <dependencies><dependency><…

柚见十三期(优化)

前端优化 加载匹配功能与加载骨架特效 骨架屏 : vant-skeleton index.vue中 /** * 加载数据 */ const loadData async () > { let userListData; loading.value true; //心动模式 if (isMatchMode.value){ const num 10;//推荐人数 userListData await myA…

【MySQL】5. 数据类型

数据类型 1. 数据类型分类 2. 数值类型 2.1 tinyint类型 数值越界测试&#xff1a; mysql> use tt; Database changed mysql> create table t1(-> num tinyint-> ); Query OK, 0 rows affected (0.01 sec)mysql> insert into t1 values(-128); Query OK, 1 r…

【JVM】GCRoot

GC root原理 通过对枚举GCroot对象做引用可达性分析&#xff0c;即从GC root对象开始&#xff0c;向下搜索&#xff0c;形成的路径称之为 引用链。如果一个对象到GC roots对象没有任何引用&#xff0c;没有形成引用链&#xff0c;那么该对象等待GC回收。 可以作为GC Roots的对…

倒计时30,28天

1.队列Q (nowcoder.com) //1. #include<bits/stdc.h> using namespace std; #define int long long const int N2e56; const int inf0x3f3f3f3f; int dir[13]{0,31,28,31,30,31,30,31,31,30,31,30,31}; const double piacos(-1.0); int a[N],b[N]; bool cmp(int xx,int …

一学就会 | ChatGPT提示词-[简历指令库]-有爱AI实战教程(八)

演示站点&#xff1a; https://ai.uaai.cn 对话模块 官方论坛&#xff1a; www.jingyuai.com 京娱AI 一、导读&#xff1a; 在使用 ChatGPT 时&#xff0c;当你给的指令越精确&#xff0c;它的回答会越到位&#xff0c;举例来说&#xff0c;假如你要请它帮忙写文案&#xf…

微服务:Bot代码执行

每次要多传一个bot_id 判网关的时候判127.0.0.1所以最好改localhost 创建SpringCloud的子项目 BotRunningSystem 在BotRunningSystem项目中添加依赖&#xff1a; joor-java-8 可动态编译Java代码 2. 修改前端&#xff0c;传入对Bot的选择操作 package com.kob.botrunningsy…