【C++学习笔记】练习小项目之职工管理系统(多态)

【C++学习笔记】练习小项目之职工管理系统(多态)

一、功能描述

二、代码实现

1.创建管理类 workerManager及具体功能实现

2.创建职工抽象类 worker

3.创建子类 employee;manager;boss

4.创建职工项目管理主函数

三、学习后记

一、功能描述

职工管理系统需求:
1.公司职工分为三类:普通员工,经理,老板;显示职工编号、职工姓名、职工岗位以及职责
2.普通员工职责:完成经理交给的任务
3.经理职责:完成老板交给的任务,并下发任务给员工
4.老板职责:管理公司所有事务

职工管理系统需要实现的功能:
1.退出管理程序
2.增加职工信息
3.显示职工信息
4.删除离职职工
5.修改职工信息
6.查找职工信息
7.按照编号排序
8.清空所有文档

二、代码实现

1.创建管理类 workerManager

头文件:

/*
@version: Visual studio 2017
@author: Sally Lau
@software: C++
@creatTime: 2021/7/20 17:00 
@description: 职工管理系统
*/

#pragma once //防止头文件重复包含
#include<iostream>
using namespace std;
#include"worker.h"
#include"employee.h"
#include"manager.h"
#include"boss.h"
#include<fstream>

#define FILENAME "empFile.txt"

class workerManager
{
public:
	//构造函数
	workerManager();

	//展示菜单
	void show_menu();

	//退出系统功能
	void Exit();

	//记录职工人数
	int m_empNum;

	//职工数组指针
	Worker ** m_empArray;

	//添加职工
	void add_emp();

	//保存文件
	void save();

	//判断文件是否为空 标志
	bool m_fileIsEmpty;

	//统计文件中人数
	int get_empNum();

	//初始化员工
	void init_emp();

	//显示员工
	void show_emp();

	//删除职工:判断职工是否存在,再实现删除功能
	void del_emp();

	//判断职工是否存在 如果存在返回职工所在数组中的位置,不存在返回-1
	int IsExist(int id);

	//修改职工
	void mod_emp();

	//查找职工 
	void find_emp();

	//按照职工编号进行排序
	void sort_emp();

	//清空文件
	void clean_emp();

	//析构函数
	~workerManager();
	
};

cpp文件:
利用多态实现具体函数功能

#include"workerManager.h"

workerManager::workerManager()
{
	//1.文件不存在
	ifstream ifs;
	ifs.open(FILENAME, ios::in); //读文件

	if (!ifs.is_open())
	{
		cout << "文件不存在" << endl;
		//初始化属性
		//初始化记录人数
		this->m_empNum = 0;
		//初始化数组指针
		this->m_empArray = NULL;
		//初始化文件是否为空
		this->m_fileIsEmpty = true;

		ifs.close();

		return;
	}

	//2.文件存在且数据为空
	char ch;
	ifs >> ch;
	if (ifs.eof())
	{
		//文件为空
		cout << "文件为空" << endl;
		//初始化属性
        //初始化记录人数
		this->m_empNum = 0;
		//初始化数组指针
		this->m_empArray = NULL;
		//初始化文件是否为空
		this->m_fileIsEmpty = true;

		ifs.close();

		return;
	}

	//3.文件存在且保存职工数据
	int num = this->get_empNum();
	cout << "职工人数为:" << num << endl;
	this->m_empNum = num;

	//4.初始化数组
	//开辟空间
	this->m_empArray = new Worker*[this->m_empNum];
	//将文件中的数据,存放到数组中
	this->init_emp();

	//测试代码
	//for (int i = 0; i < this->m_empNum; i++)
	//{
	//	cout << "职工编号: " << this->m_empArray[i]->m_id
	//		<< "  姓名: " << this->m_empArray[i]->m_name
	//		<< "  部门编号: " << this->m_empArray[i]->m_deptID << endl;
	//}
}


//展示菜单
void workerManager::show_menu()
{
	cout << "lhx*****************************" << endl;
	cout << "******欢迎使用员工管理系统******" << endl;
	cout << "*********1.退出管理程序*********" << endl;
	cout << "*********2.增加职工信息*********" << endl;
	cout << "*********3.显示职工信息*********" << endl;
	cout << "*********4.删除离职职工*********" << endl;
	cout << "*********5.修改职工信息*********" << endl;
	cout << "*********6.查找职工信息*********" << endl;
	cout << "*********7.按照编号排序*********" << endl;
	cout << "*********8.清空所有文档*********" << endl;
	cout << "*****************************lxy" << endl;
	cout << endl;

}

void workerManager::Exit()
{
	cout << "欢迎下次使用" << endl;
	system("pause");
	exit(0); //退出程序
}

//添加职工
void workerManager::add_emp()
{
	cout << "请输入添加职工数量:" << endl;

	int addNum = 0;

	cin >> addNum;

	if (addNum > 0)
	{
		//添加
		//计算添加新空间大小
		int newSize = this->m_empNum + addNum; //新空间人数=原来人数+新增人数

		//开辟新空间
		Worker ** newSpace = new Worker*[newSize];

		//将原来空间下数据拷贝到新空间下
		if (this->m_empArray != NULL)
		{
			for (int i = 0; i < this->m_empNum; i++)
			{
				newSpace[i] = this->m_empArray[i];
			}
		}

		//批量添加新数据
		for (int i = 0; i < addNum; i++)
		{
			int id; //职工编号
			string name; //职工姓名
			int dSelect; //部门选择

			cout << "请输入第" << i + 1 << "个新职工编号:" << endl;
			cin >> id;

			cout << "请输入第" << i + 1 << "个新职工姓名:" << endl;
			cin >> name;

			cout << "请选择该职工岗位:" << endl;
			cout << "1.普通职工" << endl;
			cout << "2.经理" << endl;
			cout << "3.老板" << endl;
			cin >> dSelect;

			Worker *worker = NULL;
			switch (dSelect)
			{
			case 1:
				worker = new Employee(id, name, dSelect);
				break;
			case 2:
				worker = new Manager(id, name, dSelect);
				break;
			case 3:
				worker = new Boss(id, name, dSelect);
				break;

			default:
				break;
			}
			//将创建职工职责,保存到数组中
			newSpace[this->m_empNum + i] = worker;

		}
		//释放原有空间
		delete[] this->m_empArray;

		//更改新空间的指向
		this->m_empArray = newSpace;

		//更新职工人数
		this->m_empNum = newSize;

		//更新职工不为空标志
		this->m_fileIsEmpty = false;

		//提示添加成功
		cout << "成功添加" << addNum << "名新职工!" << endl;

		//保存数据到文件中
		this->save();

	}
	else
	{
		cout << "输入数据有误" << endl;
	}

	//清屏操作
	system("pause");
	system("cls");
}

//保存文件
void workerManager::save()
{
	ofstream ofs;
	ofs.open(FILENAME, ios::out); //用输出的方式打开文件--写文件

	//将每个人的数据写入到文件中
	for (int i = 0; i < this->m_empNum; i++)
	{
		ofs << this->m_empArray[i]->m_id << " "
			<< this->m_empArray[i]->m_name << " "
			<< this->m_empArray[i]->m_deptID << endl;
	}

	//关闭文件
	ofs.close();
}

//统计文件中人数
int workerManager::get_empNum()
{
	ifstream ifs;
	ifs.open(FILENAME, ios::in); //打开文件 读

	int id;
	string name;
	int dId;

	int num = 0;

	while (ifs >> id && ifs >> name && ifs >> dId)
	{
		num++; //统计人数变量
	}

	return num;
}

//初始化员工
void workerManager::init_emp()
{
	ifstream ifs;
	ifs.open(FILENAME, ios::in);

	int id;
	string name;
	int dId;

	int index = 0;
	while (ifs >> id && ifs >> name && ifs >> dId)
	{
		Worker * worker = NULL;

		if (dId == 1) //普通职工
		{
			worker = new Employee(id, name, dId);
		}
		else if (dId == 2) //经理
		{
			worker = new Manager(id, name, dId);
		}
		else //老板
		{
			worker = new Boss(id, name, dId);
		}
		this->m_empArray[index] = worker;
		index++;
	}
	//关闭文件
	ifs.close();
}

//显示员工
void workerManager::show_emp()
{
	//判断文件是否为空
	if (this->m_fileIsEmpty)
	{
		cout << "文件不存在或者记录为空" << endl;

	}
	else
	{
		for (int i = 0; i < m_empNum ; i++)
		{
			//利用多态调用程序接口
			this->m_empArray[i]->showInfo();

		}

	}
	//清屏
	system("pause");
	system("cls");

}

//删除职工:在数组中删除后数据前移
void workerManager::del_emp()
{
	if (this->m_fileIsEmpty)
	{
		cout << "文件不存在或记录为空" << endl;
	}
	else
	{
		//按照职工编号删除
		cout << "请输入想要删除的职工编号:" << endl;
		int id = 0;
		cin >> id;

		int index = this->IsExist(id);

		if (index != -1) //说明员工存在,并且要删除掉该位置上的职工
		{
			//数据前移
			for (int i = index; i < this->m_empNum - 1; i++)
			{
				this->m_empArray[i] = this->m_empArray[i + 1];

			}
			//更新数组中记录人员个数
			this->m_empArray--;
			//数据同步更新到文件中
			this->save();

			cout << "删除成功!" << endl;

		}
		else
		{
			cout << "删除失败,未找到该职工" << endl;
		}
	}
	//清屏
	system("pause");
	system("cls");

}

//判断职工是否存在 如果存在返回职工所在数组中的位置,不存在返回-1
int workerManager::IsExist(int id)
{
	int index = -1;
	for (int i = 0; i < this->m_empNum; i++)
	{
		//找到职工
		index = i;

		break;
	}
	return index;
}

//修改职工信息
void workerManager::mod_emp()
{
	if (this->m_fileIsEmpty)
	{
		cout << "文件不存在或记录为空" << endl;
	}
	else
	{
		cout << "请输入修改职工的编号:" << endl;
		int id;
		cin >> id;

		int ret = this->IsExist(id);
		if (ret != -1)
		{
			//查找到编号的职工
			delete this->m_empArray[ret];

			int newId = 0;
			string newName = "";
			int dSelect = 0;

			cout << "查找到: " << id << "号职工,请输入新职工号: " << endl;
			cin >> newId;

			cout <<  "请输入新职工姓名: " << endl;
			cin >> newName;

			cout <<"请输入新职工岗位: " << endl;
			cout << "1.普通职工" << endl;
			cout << "2.经理" << endl;
			cout << "3.老板" << endl;
			cin >> dSelect;

			Worker * worker = NULL;
			switch (dSelect)
			{
			case 1:
				worker = new Employee(newId, newName, dSelect);
				break;
			case 2:
				worker = new Manager(newId, newName, dSelect);
				break;
			case 3:
				worker = new Boss(newId, newName, dSelect);
				break;

			default:
				break;

			}

			//更新数据到数组中
			this->m_empArray[ret] = worker;

			cout << "修改成功!" << endl;

			//保存文件中
			this->save();

		}
		else
		{
			cout << "修改失败,查无此人" << endl;
		}

	}
	//清屏
	system("pause");
	system("cls");

}

//查找员工
void workerManager::find_emp()
{
	if (this->m_fileIsEmpty)
	{
		cout << "文件不存在或记录为空" << endl;
	}
	else
	{
		cout << "请输入查找的方式:" << endl;
		cout << "1.按职工编号查找" << endl;
		cout << "2.按职工姓名查找" << endl;

		int select = 0;
		cin >> select;

		if (select == 1)
		{
			//按照编号查找
			int id;
			cout << "请输入查找的职工编号:" << endl;
			cin >> id;

			int ret = IsExist(id);
			if (ret != -1)
			{
				//找到职工
				cout << "查找成功!该职工信息如下:" << endl;
				this->m_empArray[ret]->showInfo();

			}
			else
			{
				cout << "查找失败,查无此人" << endl;
			}

		}
		else if (select == 2)
		{
			//按照姓名查找
			string name;
			cout << "请输入查找的职工姓名:" << endl;
			cin >> name;

			//判断是否查到的标志
			bool flag = false;

			for (int i = 0; i < m_empNum; i++)
			{
				if (this->m_empArray[i]->m_name == name)
				{
					cout << "查找成功!该职工信息如下:" << endl;
					this->m_empArray[i]->showInfo();

					flag = true;
				}
				
			}
			if (flag == false)
			{
				cout << "查找失败,查无此人" << endl;
			}

		}
		else
		{
			cout << "输入有误!" << endl;
		}

	}
	//清屏
	system("pause");
	system("cls");

}

//按照编号进行排序
void workerManager::sort_emp()
{
	if (this->m_fileIsEmpty)
	{
		cout << "文件不存在或记录为空" << endl;

		//清屏
		system("pause");
		system("cls");

	}
	else
	{
		cout << "请选择排序方式:" << endl;
		cout << "1.按照职工编号升序排列" << endl;
		cout << "2.按照职工编号降序排列" << endl;

		int select = 0;
		cin >> select;
		for (int i = 0; i < m_empNum; i++)
		{
			int minOrMax=i; //最大或者最小值
			for (int j = i + 1; j < this->m_empNum; j++)
			{
				if (select == 1) //升序
				{
					if (this->m_empArray[minOrMax]->m_id > this->m_empArray[j]->m_id)
					{
						minOrMax = j;
					}
				}
				else  //降序
				{
					if (this->m_empArray[minOrMax]->m_id < this->m_empArray[j]->m_id)
					{
						minOrMax = j;
					}
				}
			}

			//判断排序后最后一个是否为最大或最小,如果不是则进行交换
			if (i != minOrMax)
			{
				Worker *temp = this->m_empArray[i];
				this->m_empArray[i] = this->m_empArray[minOrMax];
				this->m_empArray[minOrMax] = temp;
			}

		}
	}
	cout << "排序成功!排序的结果为:" << endl;
	this->save(); //保存排序后的结果到文件
	this->show_emp();

}

//清空操作
void workerManager::clean_emp()
{
	cout << "确定要清空吗?" << endl;
	cout << "1.确定" << endl;
	cout << "2.返回" << endl;

	int select = 0;
	cin >> select;

	if (select == 1)
	{
		//清空文件
		ofstream ofs(FILENAME, ios::trunc); //删除文件后重新创建
		ofs.close();

		if (this->m_empArray != NULL)
		{
			//删除堆区的每个职工对象
			for (int i = 0; i < this->m_empNum; i++)
			{
				delete this->m_empArray[i];
				this->m_empArray[i] = NULL;
			}

			//删除堆区数组指针
			delete[] this->m_empArray;
			this->m_empArray = NULL;
			this->m_empNum = 0;
			this->m_fileIsEmpty = true;

		}
		cout << "清空成功!" << endl;
	}
	//清屏
	system("pause");
	system("cls");

}

workerManager::~workerManager()
{
	if (this->m_empArray != NULL)
	{
		delete[] this->m_empArray;
		this->m_empArray = NULL;
	}

}

部分结果图:
在这里插入图片描述
在这里插入图片描述
在这里插入图片描述

2.创建职工抽象类 worker

#pragma once
#include<iostream>
using namespace std;
#include<string>

//职工抽象类
class Worker
{
public:
	//显示个人信息
	virtual void showInfo() = 0;
	//获取岗位名称
	virtual string getDeptName() = 0;


	//职工编号
	int m_id;
	//职工姓名
	string m_name;
	//部门编号
	int m_deptID;

};

3.创建子类 employee;manager;boss

#pragma once
#include<iostream>
using namespace std;
#include<string>
#include"worker.h"

//普通员工头文件

class Employee :public Worker
{
public:
	Employee(int id,string name,int dId);

	//显示个人信息
	virtual void showInfo();

	//获取岗位名称
	virtual string getDeptName();
};
#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("员工");

}
#pragma once
#include<iostream>
using namespace std;
#include<string>
#include"worker.h"

//经理头文件

class Manager :public Worker
{
public:

	Manager(int id, string name, int dId);

	//显示个人信息
	virtual void showInfo();

	//获取岗位名称
	virtual string getDeptName();
};
#include"manager.h"


Manager::Manager(int id, string name, int dId)
{
	this->m_id = id;
	this->m_name = name;
	this->m_deptID = dId;

}

//显示个人信息
void Manager::showInfo()
{
	cout << "职工编号:" << this->m_id
		<< "\t职工姓名:" << this->m_name
		<< "\t岗位:" << this->getDeptName()
		<< "\t岗位职责:完成老板交给的任务,并且下发任务给普通员工" << endl;

}

//获取岗位名称
string Manager::getDeptName()
{
	return string("经理");
}
#pragma once
#pragma once
#include<iostream>
using namespace std;
#include<string>
#include"worker.h"

//老板文件

class Boss :public Worker
{
public:

	Boss(int id, string name, int dId);

	//显示个人信息
	virtual void showInfo();

	//获取岗位名称
	virtual string getDeptName();
};

#include"boss.h"


Boss::Boss(int id, string name, int dId)
{
	this->m_id = id;
	this->m_name = name;
	this->m_deptID = dId;

}

//显示个人信息
void Boss::showInfo()
{
	cout << "职工编号:" << this->m_id
		<< "\t职工姓名:" << this->m_name
		<< "\t岗位:" << this->getDeptName()
		<< "\t岗位职责:管理公司所有事务" << endl;

}

//获取岗位名称
string Boss::getDeptName()
{
	return string("总裁");
}

4.创建职工项目管理主函数

#include<iostream>
using namespace std;
#include<string>
//包含文件操作的头文件
#include<fstream>
#include"workerManager.h"
#include"worker.h"
#include"employee.h"
#include"manager.h"
#include"boss.h"
#include<fstream>

int main()
{
	//实例化管理者对象
	workerManager wm;
	//用户的选项
	int choice = 0;

	while (true)
	{
		
		//调用展示菜单的成员函数
		wm.show_menu();

		cout << "请输入您的选择:" << endl;
		cin >> choice;

		switch (choice)
		{
		case 1: //退出管理程序
			wm.Exit();
			break;
		case 2: //增加职工信息
			wm.add_emp();
			break;
		case 3: //显示职工信息
			wm.show_emp();
			break;
		case 4: //删除离职职工
			wm.del_emp();
			break; 
		case 5: //修改职工信息
			wm.mod_emp();
			break;
		case 6: //查找职工信息
			wm.find_emp();
			break;
		case 7: //按照编号排序
			wm.sort_emp();
			break;
		case 8: //清空所有文档
			wm.clean_emp();
			break;
		default:
			break;
		}

	}

	system("pause");
	return 0;
}

三、学习后记

这个练习案例相比之前的通讯录管理系统而言,要复杂很多,自己也是花了两天才写完,消化完。在写的过程中,出现了好几次错误,主要是在多重循环体内,迭代的条件写得不对,或者指针及引用得不对等地方。以后写代码一定要多注意,还有记得函数后面一定要打()。多态调用函数的时候要加上类名和作用域::。

继续加油吧!!
晚安!
在这里插入图片描述

评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值