既有适合小白学习的零基础资料,也有适合3年以上经验的小伙伴深入学习提升的进阶课程,涵盖了95%以上C C++开发知识点,真正体系化!
由于文件比较多,这里只是将部分目录截图出来,全套包含大厂面经、学习笔记、源码讲义、实战项目、大纲路线、讲解视频,并且后续会持续更新
bool Date::operator!=(const Date& y)
{
return !(*this == y);
}
📖重载<
bool Date::operator<(const 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<=(const Date& y)
{
return *this < y || *this == y;
}
📖重载**>**
bool Date::operator>(const Date& y)
{
return !(*this <= y);
}
📖重载>=
bool Date::operator>=(const Date& y)
{
return !(*this < y);
}
📒1.4重载+、+=
我们想知道50天之后的日期,就可以通过重载+、+=来实现。在加天数的时候,由于每个月的天数不一样,所以进位就不同,我们要得到每个月份的天数。
🎀 获得月份的天数
int Date::GetMonthDay(int year, int month)
{
assert(year >= 1 && month >= 1 && month <= 12);
int monthArray[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 monthArray[month];
}
**小Tips:**把month == 2放在前面判断可以提高效率,如果不是二月就不需要判断是否是闰年,如果是二月在判断。
📖重载+=
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)
{
_year++;
_month = 1;
}
}
return *this;
}
📖重载+
Date Date::operator+(int day)
{
if(x < 0)
{
return *this - (-day);
}
Date tmp(*this);
tmp._day = _day + x;
while (tmp._day > GetDay(tmp._year, tmp._month))
{
tmp._day = tmp._day - GetDay(tmp._year, tmp._month);
tmp._month++;
if (tmp._month == 13)
{
tmp._year++;
tmp._month = 1;
}
}
return tmp;
}
**小Tips:**重载+是原来的日期不会改变,所以我们拷贝构造了一个和*this相同的对象,我们对tmp对象修改,不会改变*this。重载+=是在原来的日期上直接修改,所以我们直接对*this指向的日期进行修改,然后返回就可以。
💡为什么重载**+=**用引用返回?
在重载+=中,*this就是d1,它的作用域是函数结束后才销毁,由于传值返回会拷贝一份返回值,所以为了减少返回时的拷贝,所以使用引用返回。在重载+中,tmp出了operator+函数就被销毁,所以只能使用传值返回。
📖**+
和+=
**之间的复用
+
复用+=
Date Date::operator+(int day)
{
Date tmp(*this);
tmp += day;
return tmp;
}
**📒1.**5重载 -、-=
有时我们想知道以前的日期,日期-天数可以知道多少天以前的日期,日期-日期可以知道两个日期直接隔了多少天。两个operator-函数构成了函数重载。
📖重载-=
Date& operator-=(int x)
{
//天数天数小于0,复用+=
if (x < 0)
{
return *this += -x;
}
_day -= x;
while (_day <= 0)
{
_month--;
if (_month == 0)
{
_month = 12;
_year--;
}
_day += GetDay(_year, _month);
}
return *this;
}
📖重载日期**-**天数
Date Date::operator-(int x)
{
Date tmp(*this);
return tmp -= x;
}
📖重载日期**-**日期
日期-
日期,计算的结果是两个日期之间的天数,所以返回值是int
,要知道两个日期之间相隔的天数,可以设置一个计数器,让小日期一直加到大日期,就可以知道两个日期之间相隔的天数。
int operator-(const Date& d)
{
Date max = *this;//存放大日期
Date min = d;//存放小日期
int flag = 1;
if (*this < d)
{
max = d;
min = *this;
flag = -1;
}
int n = 0;
while (max != min)
{
--max;
++n;
}
return n * flag;
}
📒1.6重载++、–
📖重载前置****++
前置++要返回++之后的值
Date& Date::operator++()
{
*this += 1;//复用+=
return *this;
}
📖重载前置****++
后置++要返回++之前的值
Date Date::operator++(int)//编译器会把有int的视为后置++
{
Date tmp(*this);
*this += 1;//复用+=
return tmp;
}
**小Tips:**这两个operator++函数构成了函数重载,那调用的时候怎么区分前置++和后置++呢?后置重载的时候多增加一个int
类型的参数,使用后置++时,调用运算符重载函数时不用传递参数,编译器自动传递。
📖重载前置 –
前置–要返回–之后的值
Date& operator--()
{
*this -= 1;//复用-=
![img](https://img-blog.csdnimg.cn/img_convert/ce049c8b512c34d9a3ef854ad3f4a173.png)
![img](https://img-blog.csdnimg.cn/img_convert/45795e8763349cda282520e4ac4f59ea.png)
**网上学习资料一大堆,但如果学到的知识不成体系,遇到问题时只是浅尝辄止,不再深入研究,那么很难做到真正的技术提升。**
**[需要这份系统化的资料的朋友,可以添加戳这里获取](https://bbs.csdn.net/topics/618668825)**
**一个人可以走的很快,但一群人才能走的更远!不论你是正从事IT行业的老鸟或是对IT行业感兴趣的新人,都欢迎加入我们的的圈子(技术交流、学习资源、职场吐槽、大厂内推、面试辅导),让我们一起学习成长!**
外链图片转存中...(img-MLWBFmT4-1715833880918)]
[外链图片转存中...(img-NfvkqShx-1715833880918)]
**网上学习资料一大堆,但如果学到的知识不成体系,遇到问题时只是浅尝辄止,不再深入研究,那么很难做到真正的技术提升。**
**[需要这份系统化的资料的朋友,可以添加戳这里获取](https://bbs.csdn.net/topics/618668825)**
**一个人可以走的很快,但一群人才能走的更远!不论你是正从事IT行业的老鸟或是对IT行业感兴趣的新人,都欢迎加入我们的的圈子(技术交流、学习资源、职场吐槽、大厂内推、面试辅导),让我们一起学习成长!**