C++编写汽车站车票管理系统登陆模块,不同角色用户登陆实现跳转不同界面案例
时间: 2024-03-24 14:37:21 浏览: 77
课程设计-基于C++的汽车站车票管理系统源码(注释拉满).zip
5星 · 资源好评率100%
好的,下面我给您提供一个简单的示例代码,仅供参考。
首先,我们定义用户角色和账号信息。这里我们定义一个 `User` 类作为基类,派生出 `Admin`、`Seller`、`NormalUser` 三个类来表示不同的用户角色。每个用户类都包含一个账号和密码,以及对应的功能实现。
```c++
#include <iostream>
#include <string>
using namespace std;
class User {
public:
User(string name, string password) : name_(name), password_(password) {}
virtual ~User() {}
virtual void showMenu() = 0;
virtual void doAction(int action) = 0;
bool login(string name, string password) {
return name == name_ && password == password_;
}
protected:
string name_;
string password_;
};
class Admin : public User {
public:
Admin(string name, string password) : User(name, password) {}
void showMenu() {
cout << "1. Manage train information" << endl;
cout << "2. Manage ticket information" << endl;
cout << "3. Exit" << endl;
}
void doAction(int action) {
switch (action) {
case 1:
cout << "Manage train information" << endl;
break;
case 2:
cout << "Manage ticket information" << endl;
break;
default:
break;
}
}
};
class Seller : public User {
public:
Seller(string name, string password) : User(name, password) {}
void showMenu() {
cout << "1. Sell ticket" << endl;
cout << "2. Refund ticket" << endl;
cout << "3. Exit" << endl;
}
void doAction(int action) {
switch (action) {
case 1:
cout << "Sell ticket" << endl;
break;
case 2:
cout << "Refund ticket" << endl;
break;
default:
break;
}
}
};
class NormalUser : public User {
public:
NormalUser(string name, string password) : User(name, password) {}
void showMenu() {
cout << "1. Query train information" << endl;
cout << "2. Buy ticket" << endl;
cout << "3. Exit" << endl;
}
void doAction(int action) {
switch (action) {
case 1:
cout << "Query train information" << endl;
break;
case 2:
cout << "Buy ticket" << endl;
break;
default:
break;
}
}
};
```
然后,我们实现登陆界面和登陆验证。这里我们使用一个 `login()` 函数来实现登陆验证,根据不同的用户角色来创建相应的对象,并调用对应的功能。
```c++
User* login() {
string name, password;
cout << "Please input your name: ";
cin >> name;
cout << "Please input your password: ";
cin >> password;
if (name == "admin" && password == "admin") {
return new Admin(name, password);
} else if (name == "seller" && password == "seller") {
return new Seller(name, password);
} else if (name == "user" && password == "user") {
return new NormalUser(name, password);
} else {
return nullptr;
}
}
```
最后,我们实现不同角色用户的功能界面。这里我们使用一个循环来显示菜单和获取用户输入,根据用户的选择调用相应的函数或方法来完成对应的功能。
```c++
int main() {
User* user = nullptr;
while (true) {
if (!user) {
user = login();
}
if (user) {
user->showMenu();
int action;
cout << "Please input your action: ";
cin >> action;
if (action < 1 || action > 3) {
cout << "Invalid action" << endl;
} else if (action == 3) {
delete user;
user = nullptr;
} else {
user->doAction(action);
}
} else {
cout << "Login failed" << endl;
break;
}
}
return 0;
}
```
这样,一个简单的汽车站车票管理系统登陆模块就完成了。当然,这只是一个示例代码,还有很多需要完善和优化的地方。如果您有任何疑问或建议,欢迎继续提问。
阅读全文