1 Star 0 Fork 0

郑鑫锋/职工管理系统

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
employee.cpp 423 Bytes
一键复制 编辑 原始数据 按行查看 历史
郑鑫锋 提交于 2023-08-07 11:30 . 推送
#include"employee.h"
//构造函数
Employee::Employee(int id, string name, int dId) {
this->m_Id = id;
this->m_Name = name;
this->m_DeptId = dId;
}
//显示个人信息
void Employee::showInfo() {
cout << "职工编号: " << this->m_Id
<< "\t职工姓名: " << this->m_Name
<< "\t岗位: " << this->getDeptName()
<<"\t岗位职责: 完成经理交给的任务"<<endl;
}
//获取岗位信息
string Employee::getDeptName() {
return string("员工");
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C++
1
https://gitee.com/goingme/employee-management-system.git
git@gitee.com:goingme/employee-management-system.git
goingme
employee-management-system
职工管理系统
master

搜索帮助