#include<iostream> #include<assert.h> using namespace std; class date { //友元声明 friend ostream& operator<<(ostream& out, const date& d); public: //初始化列表 date(int y, int m, int d) :_y(y) , _m(m) , _d(d) {} //声明与定义分类 date operator+(int count); //不加coonst的原因: ...