摘要:
#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... 阅读全文