帮我用Java写一个图书管理系统。要求:1.通过从键盘输入具备对书籍信息的维护功能(添加、删除、修改)2.通过从键盘输入具备对借阅人的信息维护功能(添加,删除修改)3.通过从键盘输入具备对借阅管理的维护功能(添加、删除、修改)4.具备对图书的查询功能(按书号、书名、借书时间、借书人等查询)5具备相关信息的统计功能(借阅人次、个人借阅统计、最受欢迎的书,借阅最少的书等)

时间: 2023-12-15 10:03:46 浏览: 65
好的,以下是用Java实现的图书管理系统代码示例: Book.java ```java public class Book { private String id; private String name; private String author; private String publisher; private String isbn; private String publishTime; private double price; private int totalNum; private int borrowedNum; public Book() {} public Book(String id, String name, String author, String publisher, String isbn, String publishTime, double price, int totalNum, int borrowedNum) { this.id = id; this.name = name; this.author = author; this.publisher = publisher; this.isbn = isbn; this.publishTime = publishTime; this.price = price; this.totalNum = totalNum; this.borrowedNum = borrowedNum; } // getter and setter methods public String getId() { return id; } public void setId(String id) { this.id = id; } public String getName() { return name; } public void setName(String name) { this.name = name; } public String getAuthor() { return author; } public void setAuthor(String author) { this.author = author; } public String getPublisher() { return publisher; } public void setPublisher(String publisher) { this.publisher = publisher; } public String getIsbn() { return isbn; } public void setIsbn(String isbn) { this.isbn = isbn; } public String getPublishTime() { return publishTime; } public void setPublishTime(String publishTime) { this.publishTime = publishTime; } public double getPrice() { return price; } public void setPrice(double price) { this.price = price; } public int getTotalNum() { return totalNum; } public void setTotalNum(int totalNum) { this.totalNum = totalNum; } public int getBorrowedNum() { return borrowedNum; } public void setBorrowedNum(int borrowedNum) { this.borrowedNum = borrowedNum; } // toString method @Override public String toString() { return "Book{" + "id='" + id + '\'' + ", name='" + name + '\'' + ", author='" + author + '\'' + ", publisher='" + publisher + '\'' + ", isbn='" + isbn + '\'' + ", publishTime='" + publishTime + '\'' + ", price=" + price + ", totalNum=" + totalNum + ", borrowedNum=" + borrowedNum + '}'; } } ``` Borrower.java ```java public class Borrower { private String id; private String name; private String gender; private String contact; public Borrower() {} public Borrower(String id, String name, String gender, String contact) { this.id = id; this.name = name; this.gender = gender; this.contact = contact; } // getter and setter methods public String getId() { return id; } public void setId(String id) { this.id = id; } public String getName() { return name; } public void setName(String name) { this.name = name; } public String getGender() { return gender; } public void setGender(String gender) { this.gender = gender; } public String getContact() { return contact; } public void setContact(String contact) { this.contact = contact; } // toString method @Override public String toString() { return "Borrower{" + "id='" + id + '\'' + ", name='" + name + '\'' + ", gender='" + gender + '\'' + ", contact='" + contact + '\'' + '}'; } } ``` BorrowRecord.java ```java public class BorrowRecord { private String id; private String borrowTime; private String returnTime; private String borrowerId; private String bookId; public BorrowRecord() {} public BorrowRecord(String id, String borrowTime, String returnTime, String borrowerId, String bookId) { this.id = id; this.borrowTime = borrowTime; this.returnTime = returnTime; this.borrowerId = borrowerId; this.bookId = bookId; } // getter and setter methods public String getId() { return id; } public void setId(String id) { this.id = id; } public String getBorrowTime() { return borrowTime; } public void setBorrowTime(String borrowTime) { this.borrowTime = borrowTime; } public String getReturnTime() { return returnTime; } public void setReturnTime(String returnTime) { this.returnTime = returnTime; } public String getBorrowerId() { return borrowerId; } public void setBorrowerId(String borrowerId) { this.borrowerId = borrowerId; } public String getBookId() { return bookId; } public void setBookId(String bookId) { this.bookId = bookId; } // toString method @Override public String toString() { return "BorrowRecord{" + "id='" + id + '\'' + ", borrowTime='" + borrowTime + '\'' + ", returnTime='" + returnTime + '\'' + ", borrowerId='" + borrowerId + '\'' + ", bookId='" + bookId + '\'' + '}'; } } ``` LibrarySystem.java ```java import java.util.ArrayList; import java.util.List; import java.util.Scanner; public class LibrarySystem { private List<Book> books; private List<Borrower> borrowers; private List<BorrowRecord> borrowRecords; private Scanner scanner; public LibrarySystem() { this.books = new ArrayList<>(); this.borrowers = new ArrayList<>(); this.borrowRecords = new ArrayList<>(); this.scanner = new Scanner(System.in); } public void start() { boolean isQuit = false; while (!isQuit) { System.out.println("欢迎使用图书管理系统,请输入对应数字选择操作:"); System.out.println("1. 添加书籍信息"); System.out.println("2. 删除书籍信息"); System.out.println("3. 修改书籍信息"); System.out.println("4. 添加借阅人信息"); System.out.println("5. 删除借阅人信息"); System.out.println("6. 修改借阅人信息"); System.out.println("7. 添加借阅记录"); System.out.println("8. 删除借阅记录"); System.out.println("9. 修改借阅记录"); System.out.println("10. 按书号查询图书信息"); System.out.println("11. 按书名查询图书信息"); System.out.println("12. 按借书时间查询图书信息"); System.out.println("13. 按借书人查询图书信息"); System.out.println("14. 统计借阅人次"); System.out.println("15. 统计个人借阅情况"); System.out.println("16. 统计最受欢迎的书"); System.out.println("17. 统计借阅最少的书"); System.out.println("18. 退出系统"); int choice = scanner.nextInt(); scanner.nextLine(); // consume the newline character switch (choice) { case 1: addBook(); break; case 2: deleteBook(); break; case 3: modifyBook(); break; case 4: addBorrower(); break; case 5: deleteBorrower(); break; case 6: modifyBorrower(); break; case 7: addBorrowRecord(); break; case 8: deleteBorrowRecord(); break; case 9: modifyBorrowRecord(); break; case 10: searchBookById(); break; case 11: searchBookByName(); break; case 12: searchBookByBorrowTime(); break; case 13: searchBookByBorrower(); break; case 14: countBorrowTimes(); break; case 15: countPersonalBorrow(); break; case 16: countPopularBook(); break; case 17: countLeastPopularBook(); break; case 18: isQuit = true; break; default: System.out.println("输入有误,请重新输入!"); break; } } } private void addBook() { System.out.println("请输入书籍信息:"); System.out.print("书号:"); String id = scanner.nextLine(); System.out.print("书名:"); String name = scanner.nextLine(); System.out.print("作者:"); String author = scanner.nextLine(); System.out.print("出版社:"); String publisher = scanner.nextLine(); System.out.print("ISBN:"); String isbn = scanner.nextLine(); System.out.print("出版时间:"); String publishTime = scanner.nextLine(); System.out.print("价格:"); double price = scanner.nextDouble(); System.out.print("库存数量:"); int totalNum = scanner.nextInt(); System.out.print("借阅数量:"); int borrowedNum = scanner.nextInt(); scanner.nextLine(); // consume the newline character Book book = new Book(id, name, author, publisher, isbn, publishTime, price, totalNum, borrowedNum); books.add(book); System.out.println("添加成功!"); } private void deleteBook() { System.out.println("请输入要删除的书籍ID或书名:"); String input = scanner.nextLine(); boolean isDeleted = false; for (Book book : books) { if (book.getId().equals(input) || book.getName().equals(input)) { books.remove(book); isDeleted = true; break; } } if (isDeleted) { System.out.println("删除成功!"); } else { System.out.println("未找到该书籍!"); } } private void modifyBook() { System.out.println("请输入要修改的书籍ID或书名:"); String input = scanner.nextLine(); boolean isModified = false; for (Book book : books) { if (book.getId().equals(input) || book.getName().equals(input)) { System.out.println("请输入修改后的书籍信息:"); System.out.print("书号:"); book.setId(scanner.nextLine()); System.out.print("书名:"); book.setName(scanner.nextLine()); System.out.print("作者:"); book.setAuthor(scanner.nextLine()); System.out.print("出版社:"); book.setPublisher(scanner.nextLine()); System.out.print("ISBN:"); book.setIsbn(scanner.nextLine()); System.out.print("出版时间:"); book.setPublishTime(scanner.nextLine()); System.out.print("价格:"); book.setPrice(scanner.nextDouble()); System.out.print("库存数量:"); book.setTotalNum(scanner.nextInt()); System.out.print("借阅数量:"); book.setBorrowedNum(scanner.nextInt()); scanner.nextLine(); // consume the newline character isModified = true; break; } } if (isModified) { System.out.println("修改成功!"); } else { System.out.println("未找到该书籍!"); } } private void addBorrower() { System.out.println("请输入借阅人信息:"); System.out.print("借阅人ID:"); String id = scanner.nextLine(); System.out.print("姓名:"); String name = scanner.nextLine(); System.out.print("性别:"); String gender = scanner.nextLine(); System.out.print("联系方式:"); String contact = scanner.nextLine(); Borrower borrower = new Borrower(id, name, gender, contact); borrowers.add(borrower); System.out.println("添加成功!"); } private void deleteBorrower() { System.out.println("请输入要删除的借阅人ID或姓名:"); String input = scanner.nextLine(); boolean isDeleted = false; for (Borrower borrower : borrowers) { if (borrower.getId().equals(input) || borrower.getName().equals(input)) { borrowers.remove(borrower); isDeleted = true; break; } } if (isDeleted) { System.out.println("删除成功!"); } else { System.out.println("未找到该借阅人!"); } } private void modifyBorrower() { System.out.println("请输入要修改的借阅人ID或姓名:"); String input = scanner.nextLine(); boolean isModified = false; for (Borrower borrower : borrowers) { if (borrower.getId().equals(input) || borrower.getName().equals(input)) { System.out.println("请输入修改后的借阅人信息:"); System.out.print("借阅人ID:"); borrower.setId(scanner.nextLine()); System.out.print("姓名:"); borrower.setName(scanner.nextLine()); System.out.print("性别:"); borrower.setGender(scanner.nextLine()); System.out.print("联系方式:"); borrower.setContact(scanner.nextLine()); isModified
阅读全文

相关推荐

最新推荐

recommend-type

PHP语言基础知识详解及常见功能应用.docx

本文详细介绍了PHP的基本语法、变量类型、运算符号以及文件上传和发邮件功能的实现方法,适合初学者了解和掌握PHP的基础知识。
recommend-type

公司金融课程期末考试题目

公司金融整理的word文档
recommend-type

适用于 Python 应用程序的 Prometheus 检测库.zip

Prometheus Python客户端Prometheus的官方 Python 客户端。安装pip install prometheus-client这个包可以在PyPI上找到。文档文档可在https://prometheus.github.io/client_python上找到。链接发布发布页面显示项目的历史记录并充当变更日志。吡啶甲酸
recommend-type

DFC力控系统维护及使用

DFC力控系统维护及使用
recommend-type

Spring Data的书籍项目,含多数据库相关内容.zip

1、资源项目源码均已通过严格测试验证,保证能够正常运行; 2、项目问题、技术讨论,可以给博主私信或留言,博主看到后会第一时间与您进行沟通; 3、本项目比较适合计算机领域相关的毕业设计课题、课程作业等使用,尤其对于人工智能、计算机科学与技术等相关专业,更为适合; 4、下载使用后,可先查看README.md文件(如有),本项目仅用作交流学习参考,请切勿用于商业用途。
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的能力,帮助开发者更好地监控和分析应用的运行情况。通过使用该插件,可以跟踪路由器更改和未捕获异常等关键信息。安装与配置过程简单明了,但是需要注意兼容性问题以及正确引用文件,以确保插件能够顺利工作。