开发一个简单的宠物信息管理系统。用C++实现,请给出源码 。要求实现以下基本功能:有简单的用户管理功能,不同用户在登录系统后会有不同的菜单可进行不同的操作。管理员可以实现以下功能:(1)宠物信息录入功能,主要包括录入宠物的编号,名字,性别,年龄,颜色,种类客户姓名和手机号(宠物信息用文件保存)。(2)宠物信息修改功能(修改后的信息也要用文件保存)。(3)宠物信息浏览功能。(4)宠物信息删除功能用户:客户可以输入自己的姓名,或者手机号查询自己的宠物信息。要求采用面向对象程序设计方法进行系统设计,充分应用封装、抽象、继承、多态、重载、模板等概念完成整个课设任务。

时间: 2024-03-06 09:48:39 浏览: 60
很高兴回答您的问题。以下是一个简单的宠物信息管理系统的C++源码,满足您的要求。 ``` #include<iostream> #include<fstream> #include<string> using namespace std; class Pet { protected: string ID; string name; string gender; int age; string color; string type; string customerName; string customerPhone; public: Pet() {} Pet(string ID, string name, string gender, int age, string color, string type, string customerName, string customerPhone) { this->ID = ID; this->name = name; this->gender = gender; this->age = age; this->color = color; this->type = type; this->customerName = customerName; this->customerPhone = customerPhone; } string getID() { return ID; } string getName() { return name; } string getGender() { return gender; } int getAge() { return age; } string getColor() { return color; } string getType() { return type; } string getCustomerName() { return customerName; } string getCustomerPhone() { return customerPhone; } void setID(string ID) { this->ID = ID; } void setName(string name) { this->name = name; } void setGender(string gender) { this->gender = gender; } void setAge(int age) { this->age = age; } void setColor(string color) { this->color = color; } void setType(string type) { this->type = type; } void setCustomerName(string customerName) { this->customerName = customerName; } void setCustomerPhone(string customerPhone) { this->customerPhone = customerPhone; } void showInfo() { cout << "ID: " << ID << endl; cout << "Name: " << name << endl; cout << "Gender: " << gender << endl; cout << "Age: " << age << endl; cout << "Color: " << color << endl; cout << "Type: " << type << endl; cout << "Customer name: " << customerName << endl; cout << "Customer phone: " << customerPhone << endl; } }; class UserManager { public: virtual void showMenu() = 0; }; class Admin : public UserManager { public: void showMenu() { cout << "Please select an option:" << endl; cout << "1. Add a pet" << endl; cout << "2. Modify pet information" << endl; cout << "3. View pet information" << endl; cout << "4. Delete pet information" << endl; cout << "5. Exit" << endl; } void addPet() { cout << "Please enter the pet information:" << endl; string ID; string name; string gender; int age; string color; string type; string customerName; string customerPhone; cout << "ID: "; cin >> ID; cout << "Name: "; cin >> name; cout << "Gender: "; cin >> gender; cout << "Age: "; cin >> age; cout << "Color: "; cin >> color; cout << "Type: "; cin >> type; cout << "Customer name: "; cin >> customerName; cout << "Customer phone: "; cin >> customerPhone; Pet pet(ID, name, gender, age, color, type, customerName, customerPhone); ofstream outfile; outfile.open("pet.txt", ios::app); outfile << ID << " " << name << " " << gender << " " << age << " " << color << " " << type << " " << customerName << " " << customerPhone << endl; outfile.close(); cout << "Add pet successfully!" << endl; } void modifyPet() { string ID; cout << "Please enter the ID of the pet you want to modify: "; cin >> ID; string line; ifstream infile; infile.open("pet.txt"); ofstream outfile; outfile.open("temp.txt"); bool found = false; while (getline(infile, line)) { string petID = line.substr(0, line.find(" ")); if (petID == ID) { found = true; Pet pet; pet.setID(petID); pet.setName(line.substr(line.find(" ") + 1, line.rfind(" ") - line.find(" ") - 1)); pet.setGender(line.substr(line.rfind(" ") + 1)); pet.showInfo(); int option; cout << "Please select an option to modify:" << endl; cout << "1. Name" << endl; cout << "2. Gender" << endl; cout << "3. Age" << endl; cout << "4. Color" << endl; cout << "5. Type" << endl; cout << "6. Customer name" << endl; cout << "7. Customer phone" << endl; cout << "8. Save and exit" << endl; cin >> option; switch (option) { case 1: cout << "New name: "; cin >> line; pet.setName(line); break; case 2: cout << "New gender: "; cin >> line; pet.setGender(line); break; case 3: cout << "New age: "; cin >> age; pet.setAge(age); break; case 4: cout << "New color: "; cin >> line; pet.setColor(line); break; case 5: cout << "New type: "; cin >> line; pet.setType(line); break; case 6: cout << "New customer name: "; cin >> line; pet.setCustomerName(line); break; case 7: cout << "New customer phone: "; cin >> line; pet.setCustomerPhone(line); break; case 8: outfile << pet.getID() << " " << pet.getName() << " " << pet.getGender() << " " << pet.getAge() << " " << pet.getColor() << " " << pet.getType() << " " << pet.getCustomerName() << " " << pet.getCustomerPhone() << endl; break; } } else { outfile << line << endl; } } infile.close(); outfile.close(); if (found) { remove("pet.txt"); rename("temp.txt", "pet.txt"); cout << "Modify pet information successfully!" << endl; } else { remove("temp.txt"); cout << "Pet not found!" << endl; } } void viewPet() { ifstream infile; infile.open("pet.txt"); string line; while (getline(infile, line)) { Pet pet; pet.setID(line.substr(0, line.find(" "))); pet.setName(line.substr(line.find(" ") + 1, line.rfind(" ") - line.find(" ") - 1)); pet.setGender(line.substr(line.rfind(" ") + 1)); pet.showInfo(); cout << endl; } infile.close(); } void deletePet() { string ID; cout << "Please enter the ID of the pet you want to delete: "; cin >> ID; string line; ifstream infile; infile.open("pet.txt"); ofstream outfile; outfile.open("temp.txt"); bool found = false; while (getline(infile, line)) { string petID = line.substr(0, line.find(" ")); if (petID == ID) { found = true; } else { outfile << line << endl; } } infile.close(); outfile.close(); if (found) { remove("pet.txt"); rename("temp.txt", "pet.txt"); cout << "Delete pet information successfully!" << endl; } else { remove("temp.txt"); cout << "Pet not found!" << endl; } } }; class User : public UserManager { public: void showMenu() { cout << "Please select an option:" << endl; cout << "1. Search pet by name" << endl; cout << "2. Search pet by customer phone" << endl; cout << "3. Exit" << endl; } void searchByName() { string name; cout << "Please enter the name of the pet you want to search: "; cin >> name; ifstream infile; infile.open("pet.txt"); string line; bool found = false; while (getline(infile, line)) { string petName = line.substr(line.find(" ") + 1, line.rfind(" ") - line.find(" ") - 1); if (petName == name) { found = true; Pet pet; pet.setID(line.substr(0, line.find(" "))); pet.setName(petName); pet.setGender(line.substr(line.rfind(" ") + 1)); pet.setAge(stoi(line.substr(line.find_last_of(" ") - 1, 1))); pet.setColor(line.substr(line.find(" ")+1, line.find_last_of(" ")-line.find(" ")-1)); pet.setType(line.substr(line.find_last_of(" ")+1, line.find_last_of(petName)-line.find_last_of(" ")-2)); pet.setCustomerName(line.substr(line.find_last_of(petName)+2, line.rfind(" ")-line.find_last_of(petName)-2)); pet.setCustomerPhone(line.substr(line.rfind(" ")+1)); pet.showInfo(); cout << endl; } } infile.close(); if (!found) { cout << "Pet not found!" << endl; } } void searchByPhone() { string phone; cout << "Please enter the customer phone of the pet you want to search: "; cin >> phone; ifstream infile; infile.open("pet.txt"); string line; bool found = false; while (getline(infile, line)) { string petPhone = line.substr(line.rfind(" ") + 1); if (petPhone == phone) { found = true; Pet pet; pet.setID(line.substr(0, line.find(" "))); pet.setName(line.substr(line.find(" ") + 1, line.rfind(" ") - line.find(" ") - 1)); pet.setGender(line.substr(line.rfind(" ") + 1)); pet.setAge(stoi(line.substr(line.find_last_of(" ") - 1, 1))); pet.setColor(line.substr(line.find(" ")+1, line.find_last_of(" ")-line.find(" ")-1)); pet.setType(line.substr(line.find_last_of(" ")+1, line.find_last_of(pet.getName())-line.find_last_of(" ")-2)); pet.setCustomerName(line.substr(line.find_last_of(pet.getName())+2, line.rfind(" ")-line.find_last_of(pet.getName())-2)); pet.setCustomerPhone(petPhone); pet.showInfo(); cout << endl; } } infile.close(); if (!found) { cout << "Pet not found!" << endl; } } }; int main() { int option; cout << "Welcome to the pet information management system!" << endl; cout << "Please select your user type:" << endl; cout << "1. Admin" << endl; cout << "2. User" << endl; cin >> option; UserManager* userManager; if (option == 1) { userManager = new Admin(); } else if (option == 2) { userManager = new User(); } while (true) { userManager->showMenu(); cin >> option; if (option == 1 && dynamic_cast<Admin*>(userManager)) { dynamic_cast<Admin*>(userManager)->addPet(); } else if (option == 2 && dynamic_cast<Admin*>(userManager)) { dynamic_cast<Admin*>(userManager)->modifyPet(); } else if (option == 3 && dynamic_cast<Admin*>(userManager)) { dynamic_cast<Admin*>(userManager)->viewPet(); } else if (option == 4 && dynamic_cast<Admin*>(userManager)) { dynamic_cast<Admin*>(userManager)->deletePet(); } else if (option == 1 && dynamic_cast<User*>(userManager)) { dynamic_cast<User*>(userManager)->searchByName(); } else if (option == 2 && dynamic_cast<User*>(userManager)) { dynamic_cast<User*>(userManager)->searchByPhone(); } else if (option == 3) { break; } else { cout << "Invalid option!" << endl; } } return 0; } ``` 该程序定义了一个Pet类来存储宠物信息,管理员和用户都是UserManager类的子类。管理员可以添加、修改、查看和删除宠物信息,而用户只能通过宠物名字或客户电话查询宠物信息。程序使用文件存储宠物信息,并采用面向对象程序设计方法进行系统设计,充分应用封装、抽象、继承、多态、重载等概念。
阅读全文

相关推荐

最新推荐

recommend-type

C++实现病人就医管理系统

"C++实现病人就医管理系统...本文详细介绍了如何使用C++语言实现病人就医管理系统,包括链队列类模板的定义和实现、队列的基本操作、病人排队的实现等内容。这些内容对于感兴趣的小伙伴来说,是非常有价值的参考资料。
recommend-type

C++ 学生成绩管理系统设计报告书

学生成绩管理系统是一种基于C++的面向对象程序设计的应用,旨在提供一套全面的功能,用于管理学生的基本信息、考试成绩以及进行数据分析。以下是该系统的主要设计和实现细节: **一、系统需求分析** 系统的主要...
recommend-type

汽车租赁信息管理系统源代码 c++.docx

租赁功能的实现依赖于一个动态数组`T[MAX]`,存储最多`MAX`辆汽车的信息,同时用静态变量`Ttop`记录当前已存储的车辆数量。当用户请求租赁车辆时,系统首先检查是否有车辆信息,如果没有则提示用户。接着,用户输入...
recommend-type

C++实现会员管理程序

本文将对C++实现会员管理程序进行详细的介绍,通过示例代码,来展示如何使用C++语言来实现一个基本的会员管理程序。 RMB类 在本实现中,我们首先定义了一个RMB类,用于表示人民币的基本信息和运算。RMB类有三个...
recommend-type

C++学校人员信息管理系统课程设计.doc

该课程设计是一个使用C++语言开发的学校人员信息管理系统,旨在为大一大二学生提供一个实践性强的课程设计项目。该系统的开发使用到了C++语言的基本语法操作,如链表、文件读写等。 知识点1:链表的应用 在该系统中...
recommend-type

火炬连体网络在MNIST的2D嵌入实现示例

资源摘要信息:"Siamese网络是一种特殊的神经网络,主要用于度量学习任务中,例如人脸验证、签名识别或任何需要判断两个输入是否相似的场景。本资源中的实现例子是在MNIST数据集上训练的,MNIST是一个包含了手写数字的大型数据集,广泛用于训练各种图像处理系统。在这个例子中,Siamese网络被用来将手写数字图像嵌入到2D空间中,同时保留它们之间的相似性信息。通过这个过程,数字图像能够被映射到一个欧几里得空间,其中相似的图像在空间上彼此接近,不相似的图像则相对远离。 具体到技术层面,Siamese网络由两个相同的子网络构成,这两个子网络共享权重并且并行处理两个不同的输入。在本例中,这两个子网络可能被设计为卷积神经网络(CNN),因为CNN在图像识别任务中表现出色。网络的输入是成对的手写数字图像,输出是一个相似性分数或者距离度量,表明这两个图像是否属于同一类别。 为了训练Siamese网络,需要定义一个损失函数来指导网络学习如何区分相似与不相似的输入对。常见的损失函数包括对比损失(Contrastive Loss)和三元组损失(Triplet Loss)。对比损失函数关注于同一类别的图像对(正样本对)以及不同类别的图像对(负样本对),鼓励网络减小正样本对的距离同时增加负样本对的距离。 在Lua语言环境中,Siamese网络的实现可以通过Lua的深度学习库,如Torch/LuaTorch,来构建。Torch/LuaTorch是一个强大的科学计算框架,它支持GPU加速,广泛应用于机器学习和深度学习领域。通过这个框架,开发者可以使用Lua语言定义模型结构、配置训练过程、执行前向和反向传播算法等。 资源的文件名称列表中的“siamese_network-master”暗示了一个主分支,它可能包含模型定义、训练脚本、测试脚本等。这个主分支中的代码结构可能包括以下部分: 1. 数据加载器(data_loader): 负责加载MNIST数据集并将图像对输入到网络中。 2. 模型定义(model.lua): 定义Siamese网络的结构,包括两个并行的子网络以及最后的相似性度量层。 3. 训练脚本(train.lua): 包含模型训练的过程,如前向传播、损失计算、反向传播和参数更新。 4. 测试脚本(test.lua): 用于评估训练好的模型在验证集或者测试集上的性能。 5. 配置文件(config.lua): 包含了网络结构和训练过程的超参数设置,如学习率、批量大小等。 Siamese网络在实际应用中可以广泛用于各种需要比较两个输入相似性的场合,例如医学图像分析、安全验证系统等。通过本资源中的示例,开发者可以深入理解Siamese网络的工作原理,并在自己的项目中实现类似的网络结构来解决实际问题。"
recommend-type

管理建模和仿真的文件

管理Boualem Benatallah引用此版本:布阿利姆·贝纳塔拉。管理建模和仿真。约瑟夫-傅立叶大学-格勒诺布尔第一大学,1996年。法语。NNT:电话:00345357HAL ID:电话:00345357https://theses.hal.science/tel-003453572008年12月9日提交HAL是一个多学科的开放存取档案馆,用于存放和传播科学研究论文,无论它们是否被公开。论文可以来自法国或国外的教学和研究机构,也可以来自公共或私人研究中心。L’archive ouverte pluridisciplinaire
recommend-type

L2正则化的终极指南:从入门到精通,揭秘机器学习中的性能优化技巧

![L2正则化的终极指南:从入门到精通,揭秘机器学习中的性能优化技巧](https://img-blog.csdnimg.cn/20191008175634343.png?x-oss-process=image/watermark,type_ZmFuZ3poZW5naGVpdGk,shadow_10,text_aHR0cHM6Ly9ibG9nLmNzZG4ubmV0L3dlaXhpbl80MTYxMTA0NQ==,size_16,color_FFFFFF,t_70) # 1. L2正则化基础概念 在机器学习和统计建模中,L2正则化是一个广泛应用的技巧,用于改进模型的泛化能力。正则化是解决过拟
recommend-type

如何构建一个符合GB/T19716和ISO/IEC13335标准的信息安全事件管理框架,并确保业务连续性规划的有效性?

构建一个符合GB/T19716和ISO/IEC13335标准的信息安全事件管理框架,需要遵循一系列步骤来确保信息系统的安全性和业务连续性规划的有效性。首先,组织需要明确信息安全事件的定义,理解信息安全事态和信息安全事件的区别,并建立事件分类和分级机制。 参考资源链接:[信息安全事件管理:策略与响应指南](https://wenku.csdn.net/doc/5f6b2umknn?spm=1055.2569.3001.10343) 依照GB/T19716标准,组织应制定信息安全事件管理策略,明确组织内各个层级的角色与职责。此外,需要设置信息安全事件响应组(ISIRT),并为其配备必要的资源、
recommend-type

Angular插件增强Application Insights JavaScript SDK功能

资源摘要信息:"Microsoft Application Insights JavaScript SDK-Angular插件" 知识点详细说明: 1. 插件用途与功能: Microsoft Application Insights JavaScript SDK-Angular插件主要用途在于增强Application Insights的Javascript SDK在Angular应用程序中的功能性。通过使用该插件,开发者可以轻松地在Angular项目中实现对特定事件的监控和数据收集,其中包括: - 跟踪路由器更改:插件能够检测和报告Angular路由的变化事件,有助于开发者理解用户如何与应用程序的导航功能互动。 - 跟踪未捕获的异常:该插件可以捕获并记录所有在Angular应用中未被捕获的异常,从而帮助开发团队快速定位和解决生产环境中的问题。 2. 兼容性问题: 在使用Angular插件时,必须注意其与es3不兼容的限制。es3(ECMAScript 3)是一种较旧的JavaScript标准,已广泛被es5及更新的标准所替代。因此,当开发Angular应用时,需要确保项目使用的是兼容现代JavaScript标准的构建配置。 3. 安装与入门: 要开始使用Application Insights Angular插件,开发者需要遵循几个简单的步骤: - 首先,通过npm(Node.js的包管理器)安装Application Insights Angular插件包。具体命令为:npm install @microsoft/applicationinsights-angularplugin-js。 - 接下来,开发者需要在Angular应用的适当组件或服务中设置Application Insights实例。这一过程涉及到了导入相关的类和方法,并根据Application Insights的官方文档进行配置。 4. 基本用法示例: 文档中提到的“基本用法”部分给出的示例代码展示了如何在Angular应用中设置Application Insights实例。示例中首先通过import语句引入了Angular框架的Component装饰器以及Application Insights的类。然后,通过Component装饰器定义了一个Angular组件,这个组件是应用的一个基本单元,负责处理视图和用户交互。在组件类中,开发者可以设置Application Insights的实例,并将插件添加到实例中,从而启用特定的功能。 5. TypeScript标签的含义: TypeScript是JavaScript的一个超集,它添加了类型系统和一些其他特性,以帮助开发更大型的JavaScript应用。使用TypeScript可以提高代码的可读性和可维护性,并且可以利用TypeScript提供的强类型特性来在编译阶段就发现潜在的错误。文档中提到的标签"TypeScript"强调了该插件及其示例代码是用TypeScript编写的,因此在实际应用中也需要以TypeScript来开发和维护。 6. 压缩包子文件的文件名称列表: 在实际的项目部署中,可能会用到压缩包子文件(通常是一些JavaScript库的压缩和打包后的文件)。在本例中,"applicationinsights-angularplugin-js-main"很可能是该插件主要的入口文件或者压缩包文件的名称。在开发过程中,开发者需要确保引用了正确的文件,以便将插件的功能正确地集成到项目中。 总结而言,Application Insights Angular插件是为了加强在Angular应用中使用Application Insights Javascript SDK的能力,帮助开发者更好地监控和分析应用的运行情况。通过使用该插件,可以跟踪路由器更改和未捕获异常等关键信息。安装与配置过程简单明了,但是需要注意兼容性问题以及正确引用文件,以确保插件能够顺利工作。