基类的构造函数为Employee( const string&,const string&,int);
派生类的构造函数为Manager( const string&,const string&,int);
然后在派生类构造函数处报错误
c++error: no matching function for call to `Employee::Employee()'|
note: candidates are: Employee::Employee(const Employee&)|
Employee::Employee(const std::string&, const std::string&, int)|