摘要: 摘自《Visual C++视频技术方案宝典》1.1.1 1 class CStuff 2 { 3 public: 4 CStuff(); 5 virtual ~CStuff(); 6 private: 7 int ID; //工号 8 CString Name; //名称 9 CString Sex; //性别10 CString Knowledge; //学历11 float Wage; //工资12 public:13 int GetID() c... 阅读全文
posted @ 2012-03-07 16:04 lzihua 阅读(391) 评论(0) 推荐(0) 编辑