C++大学基础教程_10_3_组成:对象作为类的成员

//Date.h #ifndef DATE_H #define DATE_H class Date { public: Date(int = 1,int = 1,int = 1900);//参数分别为月日年 ~Date(); void print() const ; private: int month; int day; int year; int checkDay(int)
相关文章
相关标签/搜索