java图书管理系统(简易)

实现的基本功能:

登录时,需要输入姓名,然后选择作为管理者还是普通用户。选择成功后选择想要实现的功能。管理者的目录下方有有五个功能,而普通用户有4个功能,如下图

首先我们要建立Book这个类,里面包含书本的详细信息

public class Book {private String name;private String author;private int price;private String type;private boolean isLend;public Book(String name, String author, int price, String type) {this.name = name;this.author = author;this.price = price;this.type = type;}//并不需要将是否借出作为参数,因为每一本书在增添的时候都默认没有借出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 int getPrice() {return price;}public void setPrice(int price) {this.price = price;}public String getType() {return type;}public void setType(String type) {this.type = type;}public boolean isLend() {return isLend;}public void setLend(boolean lend) {isLend = lend;}public String toString() {return "book{" +"书名 " + name + "  " +"作者 " + author + "  " +"价格 " + price +"类型 " + type + "  " +"是否借出 " + (isLend?"已借出":"未借出") +'}';}}

要设置一个书架,里面建立一个数组来放书:

 private Book[] books=new Book[10];private int usedSize;public BookList() {books[0]=new Book("三国演义","罗贯中",10,"小说");books[1]=new Book("西游记","吴承恩",12,"小说");books[2]=new Book("红楼梦","曹雪芹",11,"小说");this.usedSize =3;}public int getUsedSize() {return usedSize;}public void setUsedSize(int usedSize) {this.usedSize = usedSize;}public Book[] getBooks() {return books;}public void setBooks(Book[] books) {this.books = books;}public Book getBook(int pos){return books[pos];}public void setBook(Book book,int pos){books[pos]=book;}public boolean isFull(){if(this.usedSize==books.length){return true;}else {return false;}}
}

设置主函数:

public class Main {public static User login(){System.out.println("请输入你的名字");Scanner scanner=new Scanner(System.in);String name=scanner.nextLine();System.out.println("请输入你的身份:1,管理员  2,普通用户");int choice= scanner.nextInt();if (choice==1){return new AdminUser(name);}else {return new NormalUser(name);}}public static void main(String[] args) {BookList bookList=new BookList();User user=login();while(true) {int choice = user.menu();user.doOperation(choice, bookList);}}

面对的有两类人,一类为普通用户,另一类为管理者,建立两个类,他们均继承User这个类,因为这个User这个类不用实现对象,所以为一个抽象类

public abstract class User  {private String name;IOperation [] iOperations=new IOperation[]{};public User(String name) {this.name = name;}public  abstract int menu();public void doOperation(int choice, BookList bookList){this.iOperations[choice].work(bookList);}}
public class AdminUser extends User{public AdminUser(String name) {super(name);this.iOperations=new IOperation[]{new ExitSystem(),new FindBook(),new AddBook(),new DelBook(),new ShowBook()};}public int menu(){System.out.println("********管理员菜单**********");System.out.println("1,查找图书");System.out.println("2,新增图书");System.out.println("3,删除图书");System.out.println("4,显示图书");System.out.println("0,退出系统");System.out.println("**************************");System.out.println("请输入你操作");Scanner scanner=new Scanner(System.in);int choice=scanner.nextInt();return choice;}
}
public class NormalUser extends User {public NormalUser(String name) {super(name);this.iOperations=new IOperation[]{new ExitSystem(),new FindBook(),new LendBook(),new ReturnBook()};}public int  menu(){System.out.println("********普通用户菜单*********");System.out.println("1,查找图书");System.out.println("2,借阅图书");System.out.println("3,归还图书");System.out.println("0,退出系统");Scanner scanner=new Scanner(System.in);int choice=scanner.nextInt();return choice;}}

实现各个功能:

public interface IOperation {void work(BookList bookList);
}
新增图书
public class AddBook  implements IOperation{@Overridepublic void work(BookList bookList) {System.out.println("新增图书");if (bookList.isFull()==true){System.out.println("满了不能放");return;}System.out.println("请输入新增图书的书名:");Scanner scanner=new Scanner(System.in);String bookName=scanner.nextLine();System.out.println("请输入新增书的作者");String author=scanner.nextLine();System.out.println("请输入新增书的价格");int price=scanner.nextInt();scanner.nextLine();System.out.println("请输入新增书的类型");String type=scanner.nextLine();Book book=new Book(bookName,author,price,type);int current=bookList.getUsedSize();bookList.setBook(book,current);bookList.setUsedSize(current+1);System.out.println("新增图书成功");}
}
删除图书
public class DelBook  implements IOperation{@Overridepublic void work(BookList bookList) {System.out.println("删除图书");System.out.println("请输入要删除的书名:");Scanner scanner=new Scanner(System.in);String bookName=scanner.nextLine();int currentSize= bookList.getUsedSize();int pos=-1;int i = 0;for (; i <currentSize ; i++) {Book book=bookList.getBook(i);if(book.getName().equals(bookName)){System.out.println("找到这本书,开始删除");pos=i;break;}}if(i>=currentSize){System.out.println("没有找到这本书");return;}for (int j = pos; j <currentSize-1 ; j++) {Book book=bookList.getBook(j+1);bookList.setBook(book,j);}bookList.setUsedSize(currentSize-1);bookList.setBook(null,currentSize-1);System.out.println("删除成功");}
}
退出系统
public class ExitSystem implements IOperation{@Overridepublic void work(BookList bookList) {System.out.println("退出系统");for (int i = 0; i < bookList.getUsedSize(); i++) {bookList.setBook(null,i);}System.exit(0);}
}
查找图书
public class FindBook  implements IOperation{@Overridepublic void work(BookList bookList) {System.out.println("查找图书");System.out.println("请输入要查找的书名:");Scanner scanner=new Scanner(System.in);String bookName=scanner.nextLine();int currentSize= bookList.getUsedSize();for (int i = 0; i <currentSize ; i++) {Book book=bookList.getBook(i);if(book.getName().equals(bookName)){System.out.println("找到了这本书");System.out.println(book);return;}}System.out.println("没有找到这本书");}
}
借书
public class LendBook  implements IOperation{@Overridepublic void work(BookList bookList) {System.out.println("借书");System.out.println("请输入要借阅的书名:");Scanner scanner=new Scanner(System.in);String bookName=scanner.nextLine();int currentSize= bookList.getUsedSize();for (int i = 0; i <currentSize ; i++) {Book book=bookList.getBook(i);if(book.getName().equals(bookName)){book.setLend(true);System.out.println("借阅成功");return;}}System.out.println("借阅失败");}
}
归还图书
public class ReturnBook  implements IOperation{@Overridepublic void work(BookList bookList) {System.out.println("ReturnBook");System.out.println("请输入要归还的书名:");Scanner scanner=new Scanner(System.in);String bookName=scanner.nextLine();int currentSize= bookList.getUsedSize();for (int i = 0; i <currentSize ; i++) {Book book=bookList.getBook(i);if(book.getName().equals(bookName)){book.setLend(false);System.out.println("归还成功");return;}}System.out.println("归还失败");}
}
显示图书
public class ShowBook  implements IOperation{@Overridepublic void work(BookList bookList) {System.out.println("显示图书");int currentSize= bookList.getUsedSize();for (int i = 0; i <currentSize ; i++) {Book book=bookList.getBook(i);System.out.println(book);}}
}

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/775143.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

sqlite跨数据库复制表

1.方法1 要将 SQLite 数据库中的一个表复制到另一个数据库&#xff0c;您可以按照以下步骤操作&#xff1a; 备份原始表的SQL定义和数据&#xff1a; 使用 sqlite3 命令行工具或任何SQLite图形界面工具&#xff0c;您可以执行以下SQL命令来导出表的SQL定义和数据&#xff1a…

算法打卡day19

今日任务&#xff1a; 1&#xff09;235. 二叉搜索树的最近公共祖先 2&#xff09;701.二叉搜索树中的插入操作 3&#xff09;450.删除二叉搜索树中的节点 235. 二叉搜索树的最近公共祖先 题目链接&#xff1a;235. 二叉搜索树的最近公共祖先 - 力扣&#xff08;LeetCode&…

Adobe推出20多个,企业版生成式AI定制、微调服务

3月27日&#xff0c;全球多媒体领导者Adobe在拉斯维加斯召开“Summit 2024”大会&#xff0c;重磅推出了Firefly Services。 Firefly Services提供了20 多个生成式AI和创意API服务&#xff0c;支持企业自有数据对模型进行定制、微调&#xff0c;同时可以与PS、Illustrator、Ex…

华为开源自研AI框架昇思MindSpore应用案例:梯度累加

目录 一、环境准备1.进入ModelArts官网2.使用CodeLab体验Notebook实例 二、案例实现 梯度累加的训练算法&#xff0c;目的是为了解决由于内存不足&#xff0c;导致Batch size过大神经网络无法训练&#xff0c;或者网络模型过大无法加载的OOM&#xff08;Out Of Memory&#xff…

Learn OpenGL 26 视差贴图

什么是视差贴图 视差贴图(Parallax Mapping)技术和法线贴图差不多&#xff0c;但它有着不同的原则。和法线贴图一样视差贴图能够极大提升表面细节&#xff0c;使之具有深度感。它也是利用了视错觉&#xff0c;然而对深度有着更好的表达&#xff0c;与法线贴图一起用能够产生难…

uniapp写小程序如何实现分包

众所众知小程序上传的过程中对包的大小有限制&#xff0c;正常情况下不允许当个包超过2M&#xff0c;所以需要分包 需要再pages.json这个文件夹中进行配置 "pages": [{"path": "pages/index/index","style": {"navigationBarTit…

备考ICA----Istio实验11---为多个主机配置TLS Istio Ingress Gateway实验

备考ICA----Istio实验11—为多个主机配置TLS Istio Ingress Gateway实验 1. 部署应用 kubectl apply -f istio/samples/helloworld/helloworld.yaml -l servicehelloworld kubectl apply -f istio/samples/helloworld/helloworld.yaml -l versionv12. 证书准备 接上一个实验…

计算机网络:物理层 - 信道复用

计算机网络&#xff1a;物理层 - 信道复用 频分复用时分复用统计时分复用波分复用码分复用 计算机网络中&#xff0c;用户之间通过信道进行通信&#xff0c;但是信道是有限的&#xff0c;想要提高网络的效率&#xff0c;就需要提高信道的利用效率。因此计算机网络中普遍采用信道…

笔记本作为其他主机显示屏(HDMI采集器)

前言&#xff1a; 我打算打笔记本作为显示屏来用&#xff0c;连上工控机&#xff0c;这不是贼方便吗 操作&#xff1a; 一、必需品 HDMI采集器一个 可以去绿联买一个&#xff0c;便宜的就行&#xff0c;我的大概就长这样 win10下载 PotPlayer 软件 下载链接&#xff1a;h…

ClickHouse11-ClickHouse中文件引擎与物化视图的组合拳

全文概览&#xff1a; 什么是物化视图 使用场景 如何实现这个需求 建立一个使用表引擎的表&#xff0c;作为物化视图的目标表确定需要查询的SQL创建物化视图测试 文件引擎其实是一个不常用的特殊表引擎&#xff0c;结合【ClickHouse09-表引擎之文件引擎】一章节的基础介绍 这…

Flutter 常用插件Plugin整理并附带实例

最近有点空闲时间&#xff0c;正好写一篇文章&#xff0c;整理一下我们在Flutter开发中常用的插件Plugin使用并附带上实例。 在日常开发中&#xff0c;整个demo目前应该满足大家所有的开发需求&#xff0c;例如&#xff1a;http请求、列表刷新及加载、列表分组、轮播图、视频播…

AI浪潮席卷游戏业:未来5~10年,游戏或将由AI生成

一年前&#xff0c;因为AI失业的第一批人&#xff0c;在游戏行业出现了。游戏原画、翻译等外包团队开始遭遇砍单&#xff0c;AI绘画工具的发展速度和水平已经几乎可以媲美科班出身、初级经验的人类画师。 一年时间过去&#xff0c;在游戏制作的毛细血管中&#xff0c;越来越多…

SpringBoot3的RabbitMQ消息服务

目录 预备工作和配置 1.发送消息 实现类 控制层 效果 2.收消息 3.异步读取 效果 4.Work queues --工作队列模式 创建队列text2 实体类 效果 5.Subscribe--发布订阅模式 效果 6.Routing--路由模式 效果 7.Topics--通配符模式 效果 异步处理、应用解耦、流量削…

The C programming language (second edition,KR) exercise(CHAPTER 1)

E x c e r c i s e 1 − 2 Excercise\quad 1-2 Excercise1−2&#xff1a;测试结果如图1所示&#xff0c;这里需要注意的是转义字符序列 \ o o o \backslash ooo \ooo和序列 \ x h h \backslash xhh \xhh分别表示3个八进制数和2个十进制数对应的值对应于 A S C I I ASCII ASCII…

Django Cookie和Session

Django Cookie和Session 【一】介绍 【1】起因 HTTP协议四大特性 基于请求响应模式&#xff1a;客户端发送请求&#xff0c;服务端返回响应基于TCP/IP之上&#xff1a;作用于应用层之上的协议无状态&#xff1a;HTTP协议本身不保存客户端信息短链接&#xff1a;1.0默认使用短…

Chronos: 将时间序列作为一种语言进行学习

这是一篇非常有意思的论文&#xff0c;它将时间序列分块并作为语言模型中的一个token来进行学习&#xff0c;并且得到了很好的效果。 Chronos是一个对时间序列数据的概率模型进行预训练的框架&#xff0c;它将这些值标记为与基于transformer的模型(如T5)一起使用。模型将序列的…

ActiveMQ Artemis 系列| High Availability 主备模式(消息复制) 版本2.19.1

一、ActiveMQ Artemis 介绍 Apache ActiveMQ Artemis 是一个高性能的开源消息代理&#xff0c;它完全符合 Java Message Service (JMS) 2.0 规范&#xff0c;并支持多种通信协议&#xff0c;包括 AMQP、MQTT、STOMP 和 OpenWire 等。ActiveMQ Artemis 由 Apache Software Foun…

C++ ——数组介绍和实例

文章目录 **定义数组****初始化数组****访问数组元素****一维数组与多维数组****数组与指针****数组的局限性****现代C中的替代方案** 以下是一个C程序实例&#xff0c;演示了如何定义、初始化、访问一维数组以及使用循环遍历数组&#xff1a; C ——数组 C 中的“数组”是一种…

vue2项目设置浏览器标题title及图标logo

工作中肯定会遇到要修改网页的标题title及图标logo 一、固定设置标题方案 方法一&#xff1a;在vue.config.js文件&#xff0c;添加如下代码&#xff1a; chainWebpack: config > {// 配置网页标题config.plugin(html).tap((args) > {args[0].title 标题return args})…

[TS面试]keyof和typeof关键字作用?

keyof和typeof关键字作用? keyof 索引类型查询操作符, 获取索引类型属性名, 构成联合类型 typeof 获取一个变量或者对象的类型 let str:string ‘hello’ // typeof str >:string keyof typeof 获取 联合类型的key enum A{A, B, C }type unionType keyof typeof A; /…