基于C++的图书管理系统
资源文件列表:

book_manage_system-master/
book_manage_system-master/.gitignore 270B
book_manage_system-master/hellohello/
book_manage_system-master/hellohello/hellohello/
book_manage_system-master/hellohello/hellohello/Book.cpp 76B
book_manage_system-master/hellohello/hellohello/Book.h 347B
book_manage_system-master/hellohello/hellohello/book.txt 73B
book_manage_system-master/hellohello/hellohello/bookMgr.cpp 3.88KB
book_manage_system-master/hellohello/hellohello/bookMgr.h 556B
book_manage_system-master/hellohello/hellohello/Clerk.cpp 79B
book_manage_system-master/hellohello/hellohello/Clerk.h 263B
book_manage_system-master/hellohello/hellohello/clerk.txt 31B
book_manage_system-master/hellohello/hellohello/ClerkMgr.cpp 2.69KB
book_manage_system-master/hellohello/hellohello/ClerkMgr.h 676B
book_manage_system-master/hellohello/hellohello/hellohello.cpp 12.72KB
book_manage_system-master/hellohello/hellohello/hellohello.vcxproj 8.67KB
book_manage_system-master/hellohello/hellohello/hellohello.vcxproj.filters 2.12KB
book_manage_system-master/hellohello/hellohello/hellohello.vcxproj.user 162B
book_manage_system-master/hellohello/hellohello/pch.cpp 195B
book_manage_system-master/hellohello/hellohello/pch.h 46B
book_manage_system-master/hellohello/hellohello/Student.cpp 89B
book_manage_system-master/hellohello/hellohello/Student.h 146B
book_manage_system-master/hellohello/hellohello/student.txt 10B
book_manage_system-master/hellohello/hellohello/studentMgr.cpp 2.02KB
book_manage_system-master/hellohello/hellohello/studentMgr.h 554B
book_manage_system-master/hellohello/hellohello.sln 1.81KB
book_manage_system-master/hellohello/x64/
book_manage_system-master/hellohello/x64/Debug/
book_manage_system-master/hellohello/x64/Debug/hellohello.ilk 1.99MB
book_manage_system-master/hellohello/x64/Debug/hellohello.pdb 1.36MB
book_manage_system-master/LICENSE 11.09KB
book_manage_system-master/说明图.PNG 93.17KB
book_manage_system-master/项目说明.doc 104KB
资源介绍:
1. 类的设计 Book类 属性:书名、作者、ISBN号、出版社、价格等。 方法:构造函数、获取书籍信息、设置书籍信息等。 Library类 属性:存储书籍的容器(例如vector或map)、管理员信息等。 方法:添加书籍、删除书籍、借阅书籍、归还书籍、搜索书籍等。 User类 属性:用户名、借阅书籍列表等。 方法:构造函数、借阅书籍、归还书籍、获取借阅列表等。 2. 主要功能 图书管理功能 添加书籍:管理员可以添加新书籍到系统中。 删除书籍:管理员可以删除现有书籍。 查找书籍:用户可以根据书名、作者或ISBN号查找书籍信息。 借阅管理功能 借阅书籍:用户可以借阅书籍,系统会更新书籍的借阅状态和用户的借阅记录。 归还书籍:用户归还书籍,系统更新书籍的可借状态和用户的借阅记录。 用户管理功能 注册账号:新用户可以注册账号并进行登录。 登录系统:已注册用户可以通过用户名和密码登录系统。
1. 项目名称:hellohello(当时随便起的,后期不太好改)
2. 运行环境:VS2017
3. 项目缺陷:
(1)未实现输入值检测,请按照正规格式输入(事太多,整不完了)
(2)未实现文件备份还原(简单文件读写操作,项目中重复很多了)
4. 语言:C++17,采用了 c++17 的一些特性,在使用 VS 运行时,请按照以下说明图修改 C++语
言标准
5. 所有 txt 文件目录:D:/助教/Book_management_system/hellohello/hellohello/