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)
相關文章
相關標籤/搜索