摘要: #include using namespace std; struct node{ int y,m,d; node operator++(int ){ //后缀加加 ++i node nd = *this;//保存副本 pluss(); return nd; } node& operator++()... 阅读全文
posted @ 2019-10-07 19:38 Unknown_Island 阅读(159) 评论(0) 推荐(0) 编辑