1234567891011121314151617181920212223242526 |
- #include "boss.h"
- //构造函数
- Boss::Boss(int id, std::string name, int dept_id)
- {
- this->m_ID = id;
- this->m_Name = name;
- this->m_DeptID = dept_id;
- }
- //显示个人信息
- void Boss::showInfo()
- {
- std::cout << "职工编号" << this->m_ID
- << "\t职工姓名" << this->m_Name
- << "\t岗位:" << this->getDeptName()
- << "\t岗位职责:管理公司所有事务"
- << std::endl;
- }
- //获取岗位名称
- std::string Boss::getDeptName()
- {
- return std::string("老板");
- }
|