摘要: #include #include #include using namespace std;class Employee{ string family_name; short department;public: Employee(const string& name,int dept); virtual void print() const;};Employee::Employee(const string& name,int dept):family_name(name),department(dept){}void Employee::print() const... 阅读全文
posted @ 2013-10-25 16:05 Awy 阅读(294) 评论(0) 推荐(0) 编辑