文件名称:定义异常类-Windows编程基础
文件大小:547KB
文件格式:PPT
更新时间:2024-05-13 11:06:30
Windows
1.定义异常类 class CDateException { public: const char* what() const; CDateException(char *m); CDateException(const CDateException& de); virtual ~CDateException(); private: char *message; };