摘要: /*虚函数(2)*/class CEmployee {public: CEmployee() { nTemp = 9; } virtual ~CEmployee();public: int nTemp; virtualvoid ShowWage(void) { cout << this << ": 员工发工资方法" << endl; }};class CItem... 阅读全文
posted @ 2010-01-27 21:47 o无尘o 阅读(158) 评论(0) 推荐(0) 编辑