C++系列内容的学习目录 → \rightarrow →C++学习系列内容汇总。
本案例由于内容较多,故分为四个篇章。
1-6部分的内容见 C++ 综合大案例 :机房预约系统(1)
7部分的内容见 C++ 综合大案例 :机房预约系统(2)
8-9部分的内容见 C++ 综合大案例 :机房预约系统(3)
10部分的内容见 C++ 综合大案例 :机房预约系统(4)
1-6部分的内容见C++ 综合大案例 :机房预约系统(1)。
7部分的内容见C++ 综合大案例 :机房预约系统(2)。
在student.cpp
中的有参构造函数中,初始化学生信息,代码如下所示。
//有参构造(参数:学号、姓名、密码)
Student::Student(int id, string name, string pwd)
{
//初始化属性
this->m_Id = id;
this->m_Name = name;
this->m_Pwd = pwd;
}
机房预约系统.cpp
中,当用户登录的是学生,添加学生菜单接口。 在机房预约系统.cpp
文件中添加全局函数 void studentMenu(Identity * &student)
,代码如下所示。
//进入学生子菜单界面
void studentMenu(Identity * &student)
{
while (true)
{
//调用学生子菜单
student->operMenu();
Student * stu = (Student *)student;
int select = 0;
cin >> select;
if (select == 1) //申请预约
{
stu->applyOrder();
}
else if (select == 2) //查看自身预约
{
stu->showMyOrder();
}
else if (select == 3) //查看所有人预约
{
stu->showAllOrder();
}
else if (select == 4) //取消预约
{
stu->cancelOrder();
}
else //注销登录
{
delete student;
cout << "注销成功!" << endl;
system("pause");
system("cls");
return;
}
}
}
在student.cpp
中实现成员函数void Student::operMenu()
,代码如下所示。
//菜单界面
void Student::operMenu()
{
cout << "欢迎学生代表:" << this->m_Name << "登录!" << endl;
cout << "\t\t ----------------------------------\n";
cout << "\t\t| |\n";
cout << "\t\t| 1.申请预约 |\n";
cout << "\t\t| |\n";
cout << "\t\t| 2.查看我的预约 |\n";
cout << "\t\t| |\n";
cout << "\t\t| 3.查看所有预约 |\n";
cout << "\t\t| |\n";
cout << "\t\t| 4.取消预约 |\n";
cout << "\t\t| |\n";
cout << "\t\t| 0.注销登录 |\n";
cout << "\t\t| |\n";
cout << "\t\t ----------------------------------\n";
cout << "请选择您的操作: " << endl;
}
在机房预约系统.cpp
文件LoginIn()
函数的学生分支中添加如下所示的代码,在学生成功登录后,调用学生子菜单界面。
//进入学生身份的子菜单
studentMenu(person);
学生成功登录的测试效果如下图所示。
在申请预约时,学生可以看到机房的信息,因此我们需要让学生获取到机房的信息。
在student.h
中的学生类Student中,添加机房的容器,代码如下所示。
//机房容器
vector<ComputerRoom>vCom;
在student.cpp
文件的有参构造函数中追加如下所示的代码。
//初始化机房信息
ifstream ifs;
ifs.open(COMPUTER_FILE, ios::in);
ComputerRoom com;
while (ifs >> com.m_ComId && ifs >> com.m_MaxNum)
{
vCom.push_back(com); //将读取的信息放入到容器中
}
ifs.close();
至此,vCom容器中保存了所有机房的信息。
在student.cpp
文件中实现成员函数 void Student::applyOrder()
,代码如下所示。
//申请预约
void Student::applyOrder()
{
cout << "机房开放的时间为周一至周五!" << endl;
cout << "请选择申请预约的时间:" << endl;
cout << "1. 周一" << " 2. 周二" << " 3. 周三" << " 4. 周四" << " 5. 周五" << endl;
int date = 0; //日期
int interval = 0; //时间段
int room = 0; //机房编号
while (true)
{
cin >> date;
if (date >= 1 && date <= 5)
{
break;
}
else
{
cout << "输入有误,请重新输入:" << endl;
}
}
cout << "请选择申请预约的时间段:" << endl;
cout << "1. 上午(8:00 - 12:00)" << " 2. 下午(14:00 - 18:00)" << endl;
while (true)
{
cin >> interval;
if (interval >= 1 && interval <= 2)
{
break;
}
else
{
cout << "输入有误,请重新输入:" << endl;
}
}
cout << "请选择机房:" << endl;
for (int i = 0; i < vCom.size(); i++)
{
cout << vCom[i].m_ComId << "号机房的容量为:" << vCom[i].m_MaxNum << endl;
}
while (true)
{
cin >> room;
if (room >= 1 && room <= 3)
{
break;
}
else
{
cout << "输入有误,请重新输入:" << endl;
}
}
cout << "预约成功!审核中..." << endl;
ofstream ofs;
ofs.open(ORDER_FILE, ios::app);
ofs << "date:" << date << " "; //日期
ofs << "interval:" << interval << " "; //时间段
ofs << "stuId:" << this->m_Id << " "; //学生学号
ofs << "stuName:" << this->m_Name << " "; //学生姓名
ofs << "roomId:" << room << " "; //机房编号
ofs << "status:" << 1 << " "; //预约状态(1代表审核中)
ofs << endl;
ofs.close();
system("pause");
system("cls");
}
运行程序,测试效果如下所示。
功能描述: 显示预约记录时,需要从文件中获取到所有记录,用来显示,创建预约的类来管理记录以及更新。
在头文件以及源文件下分别创建orderFile.h
和 orderFile.cpp
文件。
orderFile.h
中添加如下所示的代码。
#pragma once
#include
using namespace std;
#include
#include
#include"globalFile.h"
#include
class OrderFile
{
public:
//构造函数
OrderFile();
//更新预约记录
void updateOrder();
//记录预约条数
int m_Size;
//记录所有预约信息的容器,key记录条数,value具体记录键值对信息
map<int, map<string, string>>m_orderData; //map中key代表属性(日期、时间段...),value代表实值(每个属性对应的具体内容);map>中key代表预约记录条数,value代表一条记录中的所有信息
};
在orderFile.cpp
的构造函数中获取所有信息,并存放在容器中,添加如下所示的代码。
//构造函数
OrderFile::OrderFile()
{
ifstream ifs;
ifs.open(ORDER_FILE, ios::in);
string date; //日期
string interval; //时间段
string stuId; //学生学号
string stuName; //学生姓名
string roomId; //机房编号
string status; //预约状态
this->m_Size = 0; //记录条数
while (ifs>>date && ifs>>interval && ifs>>stuId && ifs >> stuName && ifs >> roomId && ifs >> status)
{
//测试代码
//cout << date << endl;
//cout << interval << endl;
//cout << stuId << endl;
//cout << stuName << endl;
//cout << roomId << endl;
//cout << status << endl;
//cout << endl;
string key;
string value;
map<string, string>m;
//date:1 截取日期
int pos = date.find(":"); //pos = 4
if (pos != -1)
{
key = date.substr(0, pos);
value = date.substr(pos + 1, date.size() - pos - 1); //size = 6; pos = 4; 从5的位置开始截取6-4-1=1个字符
/*cout << "key = " << key << endl;
cout << "value = " << value << endl;*/
m.insert(make_pair(key, value));
}
//截取时间段
pos = interval.find(":");
if (pos != -1)
{
key = interval.substr(0, pos);
value = interval.substr(pos + 1, interval.size() - pos - 1);
m.insert(make_pair(key, value));
}
//截取学号
pos = stuId.find(":");
if (pos != -1)
{
key = stuId.substr(0, pos);
value = stuId.substr(pos + 1, stuId.size() - pos - 1);
m.insert(make_pair(key, value));
}
//截取学生姓名
pos = stuName.find(":");
if (pos != -1)
{
key = stuName.substr(0, pos);
value = stuName.substr(pos + 1, stuName.size() - pos - 1);
m.insert(make_pair(key, value));
}
//截取机房编号
pos = roomId.find(":");
if (pos != -1)
{
key = roomId.substr(0, pos);
value = roomId.substr(pos + 1, roomId.size() - pos - 1);
m.insert(make_pair(key, value));
}
//截取预约状态
pos = status.find(":");
if (pos != -1)
{
key = status.substr(0, pos);
value = status.substr(pos + 1, status.size() - pos - 1);
m.insert(make_pair(key, value));
}
//将小map容器放入到大的map容器中
this->m_orderData.insert(make_pair(this->m_Size, m));
this->m_Size++;
}
ifs.close();
//测试大的map容器
/*for (map>::iterator it = m_orderData.begin(); it != m_orderData.end(); it++)
{
cout << "条数为:" << it->first << " value = " << endl;
for (map::iterator mit = (*it).second.begin(); mit != it->second.end(); mit++)
{
cout << "key = " << mit->first << " value = " << mit->second << endl;
}
cout << endl;
}*/
}
更新预约记录的成员函数updateOrder()
,代码如下所示。
//更新预约记录
void OrderFile::updateOrder()
{
if (this->m_Size == 0)
{
return; //预约记录为0,直接return
}
//预约记录不为0,更新预约记录
ofstream ofs(ORDER_FILE, ios::out | ios::trunc); //利用ios::out写入,并且删了重写
for (int i = 0; i < this->m_Size; i++)
{
ofs << "date:" << this->m_orderData[i]["date"] << " ";
ofs << "interval:" << this->m_orderData[i]["interval"] << " ";
ofs << "stuId:" << this->m_orderData[i]["stuId"] << " ";
ofs << "stuName:" << this->m_orderData[i]["stuName"] << " ";
ofs << "roomId:" << this->m_orderData[i]["roomId"] << " ";
ofs << "status:" << this->m_orderData[i]["status"] << " ";
ofs << endl;
}
ofs.close();
}
首先我们添加几条预约记录,可以用程序添加或者直接修改order.txt文件。 比如我们有三名同学分别产生了3条预约记录,order.txt文件内容如下图所示。
在student.cpp
中的void Student::showMyOrder()
成员函数中,添加如下所示的代码。
//查看自身预约
void Student::showMyOrder()
{
OrderFile of;
if (of.m_Size == 0) //无预约记录,返回
{
cout << "无预约记录!" << endl;
system("pause");
system("cls");
return;
}
//有预约记录,将自身信息返回
for (int i = 0; i < of.m_Size; i++)
{
//找到自身预约
if (atoi(of.m_orderData[i]["stuId"].c_str()) == this->m_Id) //.c_str()将string转化为const char *;atoi()将const char *转化为int;整体就是将string转为int
{
cout << "预约日期:周" << of.m_orderData[i]["date"];
cout << " 时间段:" << (of.m_orderData[i]["interval"]=="1"?"上午":"下午");
cout << " 机房编号:" << of.m_orderData[i]["roomId"];
string status = " 预约状态:";
//1 审核中;2 已预约;-1 预约失败;0 取消预约
if (of.m_orderData[i]["status"] == "1")
{
status += "审核中...";
}
else if (of.m_orderData[i]["status"] == "2")
{
status += "审核通过,预约成功!";
}
else if (of.m_orderData[i]["status"] == "-1")
{
status += "审核未通过,预约失败!";
}
else if (of.m_orderData[i]["status"] == "0")
{
status += "取消预约!";
}
cout << status << endl;
}
}
system("pause");
system("cls");
}
测试效果如下图所示。
在student.cpp
中的void Student::showAllOrder()
成员函数中,添加如下所示的代码。
//查看所有预约
void Student::showAllOrder()
{
OrderFile of;
if (of.m_Size == 0)
{
cout << "无预约记录!" << endl;
system("pause");
system("cls");
return;
}
for (int i = 0; i < of.m_Size; i++)
{
cout << i + 1 << "、 ";
cout << "预约日期:周" << of.m_orderData[i]["date"];
cout << " 时间段:" << (of.m_orderData[i]["interval"] == "1" ? "上午" : "下午");
cout << " 学号:" << of.m_orderData[i]["stuId"];
cout << " 姓名:" << of.m_orderData[i]["stuName"];
cout << " 机房编号:" << of.m_orderData[i]["roomId"];
string status = " 预约状态:";
//1 审核中;2 已预约;-1 预约失败;0 取消预约
if (of.m_orderData[i]["status"] == "1")
{
status += "审核中...";
}
else if (of.m_orderData[i]["status"] == "2")
{
status += "审核通过,预约成功!";
}
else if (of.m_orderData[i]["status"] == "-1")
{
status += "审核未通过,预约失败!";
}
else if (of.m_orderData[i]["status"] == "0")
{
status += "取消预约!";
}
cout << status << endl;
}
system("pause");
system("cls");
}
测试效果如下图所示。
在student.cpp
中的void Student::cancelOrder()
成员函数中,添加如下所示的代码。
//取消预约
void Student::cancelOrder()
{
OrderFile of;
if (of.m_Size == 0)
{
cout << "无预约记录!" << endl;
system("pause");
system("cls");
return;
}
cout << "审核中或预约成功的记录可以取消,您的预约记录如下:" << endl;
vector<int>v; //存放最大容器中的下标编号
int index = 1; //提示用户需要操作的预约记录的条数
for (int i = 0; i < of.m_Size; i++)
{
//先判断是否是自身学号
if (this->m_Id == atoi(of.m_orderData[i]["stuId"].c_str()))
{
//再筛选状态,审核中或预约成功
if (of.m_orderData[i]["status"] == "1" || of.m_orderData[i]["status"] == "2")
{
v.push_back(i);
cout << index++ << "、 ";
cout << "预约日期:周" << of.m_orderData[i]["date"];
cout << " 时间段:" << (of.m_orderData[i]["interval"] == "1"?"上午":"下午");
cout << " 机房编号:" << of.m_orderData[i]["roomId"];
string status = " 预约状态:";
//1 审核中;2 已预约;-1 预约失败;0 取消预约
if (of.m_orderData[i]["status"] == "1")
{
status += "审核中...";
}
else if (of.m_orderData[i]["status"] == "2")
{
status += "审核通过,预约成功!";
}
cout << status << endl;
}
}
}
cout << "请输入需要取消的记录(0代表返回):" << endl;
int select = 0;
while (true)
{
cin >> select;
if (select >= 0 && select <= v.size())
{
if (select == 0)
{
break;
}
else
{
of.m_orderData[v[select - 1]]["status"] = "0"; //v[select - 1]用于需要取消的记录所在位置
of.updateOrder(); //更新数据
cout << "已取消预约!" << endl;
break;
}
}
cout << "输入有误,请重新输入:" << endl;
}
system("pause");
system("cls");
}
测试取消预约,效果如下所示。
再次查看个人预约记录,发现之前的预约状态已变为“取消预约!”,如下图所示。
查看所有预约,刚取消的那条预约记录的预约状态已变为“取消预约!”,如下图所示。
打开order.txt文件,刚取消的那条预约记录的预约状态已变为“0”,如下图所示。
在teacher.cpp
中的有参构造函数中,追加如下所示的代码,初始化老师信息。
//有参构造函数(参数:职工号、姓名、密码)
Teacher::Teacher(int empId, string name, string pwd)
{
//初始化属性
this->m_EmpId = empId;
this->m_Name = name;
this->m_Pwd = pwd;
}
机房预约系统.cpp
中,当用户登录的是老师账号,添加老师菜单接口。 在机房预约系统.cpp
文件中添加全局函数 void teacherMenu(Person * &teacher)
,代码如下所示。
//进入老师子菜单界面
void teacherMenu(Identity * &teacher)
{
while (true)
{
//调用子菜单的界面
teacher->operMenu();
Teacher *tea = (Teacher*)teacher;
int select = 0;
cin >> select;
if (select == 1) //查看所有预约
{
tea->showOrder();
}
else if (select == 2) //审核预约
{
tea->valiOrder();
}
else //注销登录
{
delete teacher;
cout << "注销成功!" << endl;
system("pause");
system("cls");
return;
}
}
}
在teacher.cpp
中实现成员函数void Teacher::operMenu()
,代码如下所示。
//菜单界面
void Teacher::operMenu()
{
cout << "欢迎教师:" << this->m_Name << "登录!" << endl;
cout << "\t\t ----------------------------------\n";
cout << "\t\t| |\n";
cout << "\t\t| 1.查看所有预约 |\n";
cout << "\t\t| |\n";
cout << "\t\t| 2.审核预约 |\n";
cout << "\t\t| |\n";
cout << "\t\t| 0.注销登录 |\n";
cout << "\t\t| |\n";
cout << "\t\t ----------------------------------\n";
cout << "请选择您的操作: " << endl;
}
在机房预约系统.cpp
文件LoginIn()
函数的老师分支中添加如下所示的代码,在老师成功登录后,调用老师子菜单界面。
//进入老师身份的子菜单
teacherMenu(person);
老师成功登录的测试效果如下图所示。
该功能与学生身份的查看所有预约功能相似,用于显示所有预约记录。
在teacher.cpp
中实现成员函数 void Teacher::showAllOrder()
,代码如下所示。
//查看所有预约
void Teacher::showAllOrder()
{
OrderFile of;
if (of.m_Size == 0)
{
cout << "无预约记录!" << endl;
system("pause");
system("cls");
return;
}
for (int i = 0; i < of.m_Size; i++)
{
cout << i + 1 << "、 ";
cout << "预约日期:周" << of.m_orderData[i]["date"];
cout << " 时间段:" << (of.m_orderData[i]["interval"] == "1" ? "上午" : "下午");
cout << " 学号:" << of.m_orderData[i]["stuId"];
cout << " 姓名:" << of.m_orderData[i]["stuName"];
cout << " 机房编号:" << of.m_orderData[i]["roomId"];
string status = " 预约状态:";
//1 审核中;2 已预约;-1 预约失败;0 取消预约
if (of.m_orderData[i]["status"] == "1")
{
status += "审核中...";
}
else if (of.m_orderData[i]["status"] == "2")
{
status += "审核通过,预约成功!";
}
else if (of.m_orderData[i]["status"] == "-1")
{
status += "审核未通过,预约失败!";
}
else if (of.m_orderData[i]["status"] == "0")
{
status += "取消预约!";
}
cout << status << endl;
}
system("pause");
system("cls");
}
运行程序测试查看所有预约的功能,测试效果如下所示。
功能描述: 老师审核学生的预约,依据实际情况审核预约。
在teacher.cpp
中实现成员函数 void Teacher::validOrder()
,代码如下所示。
//审核预约
void Teacher::valiOrder()
{
OrderFile of;
if (of.m_Size == 0)
{
cout << "无预约记录!" << endl;
system("pause");
system("cls");
return;
}
vector<int>v; //存放待审核的预约记录编号
int index = 0;
cout << "待审核的预约记录如下:" << endl;
for (int i = 0; i < of.m_Size; i++)
{
if (of.m_orderData[i]["status"] == "1")
{
v.push_back(i);
cout << ++index << "、 ";
cout << "预约日期:周" << of.m_orderData[i]["date"];
cout << " 时间段:" << (of.m_orderData[i]["interval"] == "1" ? "上午" : "下午");
cout << " 学号:" << of.m_orderData[i]["stuId"];
cout << " 姓名:" << of.m_orderData[i]["stuName"];
cout << " 机房编号:" << of.m_orderData[i]["roomId"];
string status = " 预约状态:审核中..."; //待审核的预约记录只有审核中一种情况
cout << status << endl;
}
}
cout << "请输入需要审核的预约记录(0代表返回):" << endl;
int select = 0; //接收用户选择的预约记录
int ret = 0; //接收预约记录的审核结果(审核提供或审核未通过)
while (true)
{
cin >> select;
if (select >= 0 && select <= v.size())
{
if (select == 0)
{
break;
}
else
{
cout << "请输入审核结果:" << endl;
cout << "1. 通过" << endl;
cout << "2. 不通过" << endl;
cin >> ret;
if (ret == 1)
{
//审核通过
of.m_orderData[v[select - 1]]["status"] = "2";
}
else
{
//审核不通过
of.m_orderData[v[select - 1]]["status"] = "-1";
}
of.updateOrder(); //更新预约记录
cout << "审核完毕!" << endl;
break;
}
}
cout << "输入有误,请重新输入:" << endl;
}
system("pause");
system("cls");
}
测试审核预约的功能,效果如下图所示。
老师身份查看所有预约记录,效果如下图所示。
打开order.txt文件,预约记录已同步更新,如下图所示。
10部分的内容见C++ 综合大案例 :机房预约系统(4)。