重载++运算符为成员函数(日期类函数设计也可以看一下 )
//这篇代码比较长建议粘贴下来到dev里面用左边的+-把部分函数收起来一条条的打开看 不容易乱
#include <iostream>
using namespace std;
class Date{
private:
int year,month,day;//年月日
bool IsLeapYear()//判断闰年
{
return (year%4==0&&ye...
原创
2018-11-08 23:51:10 ·
914 阅读 ·
0 评论