Java实现一个简单的图书管理系统(内有源码)

简介

哈喽哈喽大家好啊,之前作者也是讲了Java不少的知识点了,为了巩固之前的知识点再为了让我们深入Java面向对象这一基本特性,就让我们完成一个图书管理系统的小项目吧。

项目简介:通过管理员和普通用户的两种操作界面,利用其中的方法以及对象之间的交互,来实现对图书的管理

源码

book包

主要包含book对象和book List对象以及Main方法

Book类

描述书的有关信息,构造方法和各种getter,setter方法

public class Book {
    //书的属性:名字,作者,价格,类型,借出情况
    private String name;
    private String author;
    private int price;
    private String type;
    private boolean borrowed;

    public Book(){

    }

    public Book(String name, String author, int price, String type) {
        this.name = name;
        this.author = author;
        this.price = price;
        this.type = type;
    }

    /**
     * 获取
     * @return name
     */
    public String getName() {
        return name;
    }

    /**
     * 设置
     * @param name
     */
    public void setName(String name) {
        this.name = name;
    }

    /**
     * 获取
     * @return author
     */
    public String getAuthor() {
        return author;
    }

    /**
     * 设置
     * @param author
     */
    public void setAuthor(String author) {
        this.author = author;
    }

    /**
     * 获取
     * @return price
     */
    public int getPrice() {
        return price;
    }

    /**
     * 设置
     * @param price
     */
    public void setPrice(int price) {
        this.price = price;
    }

    /**
     * 获取
     * @return type
     */
    public String getType() {
        return type;
    }

    /**
     * 设置
     * @param type
     */
    public void setType(String type) {
        this.type = type;
    }

    /**
     * 获取
     * @return borrowed
     */
    public boolean isBorrowed() {
        return borrowed;
    }

    /**
     * 设置
     * @param borrowed
     */
    public void setBorrowed(boolean borrowed) {
        this.borrowed = borrowed;
    }

    public String toString() {
        return "Book{name = " + name + ", author = " + author + ", price = " + price + ", type = " + type + "," +/*", borrowed = " + borrowed*/
                ((isBorrowed() == true) ? " 已被借出" : " 未被借出")+ "}";
    }
}

BookList

作为书架,利用数组存放书籍. 

public class BookList {
    //定义数组成员表示存放书的数组
    public Book[] books;
    //表示书架上存放书的数量
    private int useSize;
    //设置最大容量
    private static final int DEFAULT_CAPACITY = 10;

    public BookList() {
        this.books = new Book[DEFAULT_CAPACITY];
        //先提前放好三本书
        this.books[0] = new Book("三国演义", "罗贯中", 10, "小说");
        this.books[1] = new Book("西游记", "吴承恩", 9, "小说");
        this.books[2] = new Book("红楼梦", "曹雪芹", 19, "小说");

        this.useSize = 3;
    }

    //书架上书的数量的getter和setter方法
    public int getUseSize() {
        return useSize;
    }

    public void setUseSize(int useSize) {
        this.useSize = useSize;
    }

    //通过下标获取对应书籍的getter方法
    public Book getBook(int pos) {
        return books[pos];
    }

    //通过下标和传入的书对象设置对应书籍的setter方法
    public void setBooks(int pos, Book book) {
        books[pos] = book;
    }

    public Book[] getBooks() {
        return books;
    }
}

Main方法

主要的操作逻辑 

import user.AdminUser;
import user.NormalUser;
import user.User;

import java.util.Scanner;

public class Main {
    //可以利用返回值的向上转型 达到发挥的一致性
    public static User Login() {
        System.out.println("请输入你的姓名:");
        Scanner sc = new Scanner(System.in);
        String name = sc.nextLine();
        System.out.println("请输入你的身份:1.管理员 2.普通用户 ->");
        int choice = sc.nextInt();
        if (choice == 1) {
            //管理员
            return new AdminUser(name);
        } else if (choice == 2) {
            //普通用户
            return new NormalUser(name);
        }
        return null;
    }

    public static void main(String[] args) {
        BookList booklist = new BookList();
        //user指向哪个对象 就看返回值
        User user = Login();
        while(true) {
            int choice = user.menu();
            //System.out.println("choice:" + choice);

            //根据choice来决定调用哪个方法
            user.doOperation(choice, booklist);
        }
    }
}

user包

主要包含user以及相关对象

父类User

包含基本属性:姓名,menu(菜单)方法的声明,doOperation(执行方法操作)方法的声明。

import book.BookList;
import operation.IOPeration;

public abstract class User {
    protected String name;

    protected IOPeration[] ioperations;
    public User(String name) {
        this.name = name;
    }

    public abstract int menu();

    public void doOperation(int choice, BookList booklist) {
        ioperations[choice].work(booklist);bao
    }
}

子类AdminUser

包含管理员使用方法的数组和管理员菜单。

import operation.*;

import java.util.Scanner;

public class AdminUser extends User{
    public AdminUser(String name) {
        super(name);
        this.ioperations = new IOPeration[]{new ExitOperation(),
        new FindOperation(),
        new AddOperation(),
        new DelOperation(),
        new ShowOperation()};
    }

    //管理员专用菜单
    public int menu() {
        System.out.println("*************管理员界面*************");
        System.out.println("hello " + this.name +"欢迎来到管理员菜单!");
        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 sc = new Scanner(System.in);
        int choice = sc.nextInt();
        return choice;
    }
}

子类NormalUser

包含普通用户使用方法的数组和普通用户菜单。

package user;
import operation.*;

import java.util.Scanner;

public class NormalUser extends User{
    public NormalUser(String name) {
        super(name);
        this.ioperations = new IOPeration[]{new ExitOperation(),
                new FindOperation(),
                new BorrowOperation(),
                new ReturnOperatoin(),
        };
    }

    //普通用户用菜单
    public int menu() {
        System.out.println("*************普通用户界面*************");
        System.out.println("hello " + this.name +"欢迎来到普通用户菜单!");
        System.out.println("1.查找图书");
        System.out.println("2.借阅图书");
        System.out.println("3.归还图书");
        System.out.println("0.退出系统");
        System.out.println("************************************");
        System.out.println("请输入你的操作:");
        Scanner sc = new Scanner(System.in);
        int choice = sc.nextInt();
        return choice;
    }
}

Operation包

主要包含各种操作方法

IOPeration接口

后续使用所有方法继承这个接口,对bookList对象进行相关工作。

package operation;

import book.BookList;

public interface IOPeration {
    void work(BookList booklist);
}

AddOperation方法

添加图书的方法

package operation;

import book.BookList;
import book.Book;

import java.util.Scanner;

public class AddOperation implements IOPeration{
    @Override
    public void work(BookList booklist) {
        System.out.println("增加书籍");
        Scanner sc = new Scanner(System.in);
        int currentSize = booklist.getUseSize();
        //用户输入书籍信息
        System.out.println("请输入书籍的名称:");
        String name =sc.nextLine();
        System.out.println("请输入书籍的作者:");
        String author = sc.nextLine();
        System.out.println("请输入书籍的类型:");
        String type = sc.nextLine();
        //注意:这里将回车放到最后,如果放在前面,下一个nextLine()会读入回车
        System.out.println("请输入书籍的价格:");
        int price = sc.nextInt();

        //创建一个新的book对象导入刚才的信息
        Book book = new Book(name, author, price, type);
        //检查书架当中是否有这本书
        for (int i = 0; i < currentSize; i++) {
            Book book1 = booklist.getBook(i);
            //判断书架中的书与新导入书的引用是否相等
            if(book1 == book) {
                System.out.println("书架上有这本书,添加失败");
                return;
            }
        }
        //判断添入书是否超出书架最大容量,未超出则添入书籍
        if(currentSize == booklist.getBooks().length) {
            System.out.println("书架已满,添加失败");
        } else {
            //在书架中添入书籍
            booklist.setBooks(currentSize, book);
            //存放书的数量+1
            booklist.setUseSize(currentSize + 1);
            System.out.println("添加成功");
        }
    }

}

FindOperation方法

寻找图书的方法

package operation;

import book.Book;
import book.BookList;

import java.util.Scanner;

public class FindOperation implements IOPeration{
    @Override
    public void work(BookList booklist) {
        System.out.println("寻找书籍");
        Scanner sc = new Scanner(System.in);
        System.out.println("请输入您要寻找的书籍");
        String name = sc.nextLine();
        int currentSize = booklist.getUseSize();
        for (int i = 0; i < currentSize; i++) {
            Book book = booklist.getBook(i);
            if(book.getName().equals(name)) {
                System.out.println("找到了,是这本书:");
                System.out.println(book);
                return;
            }
        }
        System.out.println("没有找到这本书");
    }
}

DelOperation方法

删除图书所使用的方法

package operation;

import book.Book;
import book.BookList;

import java.util.Scanner;

public class DelOperation implements IOPeration {
    @Override
    public void work(BookList bookList) {
        System.out.println("删除书籍");
        //1.找到有没有这本书
        System.out.println("请输入要删除书的名字");
        Scanner sc = new Scanner(System.in);
        String name = sc.nextLine();
        int currentSize = bookList.getUseSize();
        for (int i = 0; i < currentSize; i++) {
            Book book = bookList.getBook(i);
            if (book.getName().equals(name)) {
                //2.如果有,从这本书后面开始,从前往后向前覆盖
                for (; i < currentSize; i++) {
                    Book book1 = bookList.getBook(i + 1);
                    bookList.setBooks(i, book1);
                }
                //3.将最后一本书置为空
                bookList.setBooks(currentSize - 1, null);
                //数组最大容量减少
                bookList.setUseSize(currentSize - 1);
                System.out.println("删除成功!");
                return;
            }
        }
        //未删除成功的情况
        System.out.println("该书不存在,删除失败");
        return;
    }
}

ShowOperation方法

显示所有图书的方法

package operation;

import book.Book;
import book.BookList;

import java.util.Scanner;

public class DelOperation implements IOPeration {
    @Override
    public void work(BookList bookList) {
        System.out.println("删除书籍");
        //1.找到有没有这本书
        System.out.println("请输入要删除书的名字");
        Scanner sc = new Scanner(System.in);
        String name = sc.nextLine();
        int currentSize = bookList.getUseSize();
        for (int i = 0; i < currentSize; i++) {
            Book book = bookList.getBook(i);
            if (book.getName().equals(name)) {
                //2.如果有,从这本书后面开始,从前往后向前覆盖
                for (; i < currentSize; i++) {
                    Book book1 = bookList.getBook(i + 1);
                    bookList.setBooks(i, book1);
                }
                //3.将最后一本书置为空
                bookList.setBooks(currentSize - 1, null);
                //数组最大容量减少
                bookList.setUseSize(currentSize - 1);
                System.out.println("删除成功!");
                return;
            }
        }
        //未删除成功的情况
        System.out.println("该书不存在,删除失败");
        return;
    }
}

BorrowOperation方法

借入图书的方法

package operation;

import book.Book;
import book.BookList;

import java.util.Scanner;

public class BorrowOperation implements IOPeration{
    @Override
    public void work(BookList booklist) {
        System.out.println("借出书籍");
        /*
        * 1.你要借阅什么书
        * 2.你要借阅的书存不存在
        * 3.如何完成借阅过程 isBorrowed->true 已借出 isBorrowed->false 未借出
        * */
        System.out.println("请输入你要借阅的图书名字");
        Scanner sc = new Scanner(System.in);
        String name = sc.nextLine();
        int currentSize = booklist.getUseSize();
        for (int i = 0; i < currentSize; i++) {
            Book book = booklist.getBook(i);
            //该图书存在的情况
            if(book.getName().equals(name) && book.isBorrowed() == false) {
                book.setBorrowed(true);
                System.out.println("借出成功");
                System.out.println(book);
                return;
            }
        }

        //未被借出的情况
        System.out.println("该图书已被借出或者不存在,借阅失败");
        return;
    }
}

ReturnOperation方法

归还图书的方法

package operation;

import book.Book;
import book.BookList;

import java.util.Scanner;

public class ReturnOperatoin implements IOPeration{
    @Override
    public void work(BookList booklist) {
        System.out.println("归还书籍");
        System.out.println("请输入你要归还的图书");
        Scanner sc = new Scanner(System.in);
        String name = sc.nextLine();
        int currentSize = booklist.getUseSize();
        for (int i = 0; i < currentSize; i++) {
            Book book = booklist.getBook(i);
            //该图书存在的情况
            if(book.getName().equals(name) && book.isBorrowed() == true) {
                book.setBorrowed(false);
                System.out.println("归还成功");
                System.out.println(book);
                return;
            }
        }

        //未被借出的情况
        System.out.println("该图书已被归还或者不存在,归还失败");
        return;
    }
}

ExitOperation方法

退出系统所使用的方法。

package operation;

import book.BookList;

public class ExitOperation implements IOPeration{
    @Override
    public void work(BookList booklist) {
        System.out.println("退出系统");
        //退出系统指令
        System.exit(0);
    }
}

操作示例

这里展示一下管理员界面的部分操作逻辑:

 

 

补充

缺点:没有做到持久化存储。以后可以进行升级:将数据存储到数据库或者文件夹中

           当前用到的只是数组。后期可以做成网页交互。

好了,图书管理系统就说到这里,大家再见!

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

如若内容造成侵权/违法违规/事实不符,请联系我们进行投诉反馈qq邮箱809451989@qq.com,一经查实,立即删除!

相关文章

机器学习之概率论

最近&#xff0c;在了解机器学习相关的数学知识&#xff0c;包括线性代数和概率论的知识&#xff0c;今天&#xff0c;回顾了概率论的知识&#xff0c;贴上几张其他博客的关于概率论的图片&#xff0c;记录学习过程。

视频云存储/安防监控EasyCVR视频汇聚平台如何通过角色权限自行分配功能模块?

视频云存储/安防监控EasyCVR视频汇聚平台基于云边端智能协同&#xff0c;支持海量视频的轻量化接入与汇聚、转码与处理、全网智能分发、视频集中存储等。音视频流媒体视频平台EasyCVR拓展性强&#xff0c;视频能力丰富&#xff0c;具体可实现视频监控直播、视频轮播、视频录像、…

redis实战-缓存三剑客穿透击穿雪崩解决方案

缓存穿透 定义 缓存穿透 &#xff1a;缓存穿透是指客户端请求的数据在缓存中和数据库中都不存在&#xff0c;这样缓存永远不会生效&#xff0c;这些请求都会打到数据库&#xff0c;造成数据库压力&#xff0c;也让缓存没有发挥出应有的作用 解决方案 缓存空对象 当我们客户端…

(6)(6.3) 自动任务中的相机控制

文章目录 前言 6.3.1 概述 6.3.2 自动任务类型 6.3.3 创建合成图像 前言 本文介绍 ArduPilot 的相机和云台命令&#xff0c;并说明如何在 Mission Planner 中使用这些命令来定义相机勘测任务。这些说明假定已经连接并配置了相机触发器和云台(camera trigger and gimbal ha…

opencv简单使用

cv2库安装&#xff0c; conda install opencv-python注意cv2使用时&#xff0c;路径不能有中文。&#xff08;不然会一直’None’ _ update # 处理中文路径问题 def cv_imread(file_path): #使用之前需要导入numpy、cv2库&#xff0c;file_path为包含中文的路径return cv2.imd…

IP库新增经过实践的Verilog 库

网上严重缺乏实用的 Verilog 设计。Project F 库是尝试让 FPGA 初学者变得更好部分。 设计包括 Clock- 时钟生成 (PLL) 和域交叉Display - 显示时序、帧缓冲区、DVI/HDMI 输出Essential- 适用于多种设计的便捷模块Graphics- 绘制线条和形状Maths- 除法、LFSR、平方根、正弦....…

Excel/PowerPoint条形图改变顺序

条形图是从下往上排的&#xff0c;很多时候不是我们想要的效果 解决方案 选择坐标轴&#xff0c;双击&#xff0c;按下图顺序点击 效果

LLM架构自注意力机制Transformers architecture Attention is all you need

使用Transformers架构构建大型语言模型显著提高了自然语言任务的性能&#xff0c;超过了之前的RNNs&#xff0c;并导致了再生能力的爆炸。 Transformers架构的力量在于其学习句子中所有单词的相关性和上下文的能力。不仅仅是您在这里看到的&#xff0c;与它的邻居每个词相邻&…

前端界面设计

目录 1.兴趣展示网站1.效果2.核心代码展示3.源代码 2.优美的登录网页1.效果2.核心代码展示3.源代码 3.美女相册1.效果2.核心代码展示3.源代码 4.精美选项卡1.效果2.核心代码展示3.源代码 4. 自己写过的一些前端界面设计Demo整理。 1.兴趣展示网站 1.效果 2.核心代码展示 工程截…

vue3 基础知识

vue3创建一个项目 PS D:\code> npm init vuelatestVue.js - The Progressive JavaScript Framework√ Add TypeScript? ... No / Yes √ Add JSX Support? ... No / Yes √ Add Vue Router for Single Page Application development? ... No / Yes √ Add Pinia for sta…

day-24 代码随想录算法训练营(19)回溯part01

77.组合 思路一&#xff1a;回溯相当于枚举&#xff0c;所以我们遍历1-n的每一个数字&#xff0c;然后在遍历第i位的同时递归出第i1~n位的组合结果&#xff0c;跟树的形式相似。 如上图所示&#xff0c;当长度为k时&#xff0c;即退出递归可对遍历到第i位以及剩下位数与k进行比…

GEEMAP 基本操作(一)如何拉伸图像

图像拉伸是最基础的图像增强显示处理方法&#xff0c;主要用来改善图像显示的对比度&#xff0c;地物提取流程中往往首先要对图像进行拉伸处理。图像拉伸主要有三种方式&#xff1a;线性拉伸、直方图均衡化拉伸和直方图归一化拉伸。 GEE 中使用 .sldStyle() 的方法来进行图像的…

死锁的典型情况、产生的必要条件和解决方案

前言 死锁&#xff1a;多个线程同时被阻塞&#xff0c;他们中的一个或全部都在等待某个资源被释放。由于线程被无限期地阻塞&#xff0c;因此程序不可能正常终止。 目录 前言 一、死锁的三种典型情况 &#xff08;一&#xff09;一个线程一把锁 &#xff08;二&#xff09;…

redis常用五种数据类型详解

目录 前言&#xff1a; string 相关命令 内部编码 应用场景 hash 相关命令 内部编码 应用场景 list 相关命令 内部编码 应用场景 set 相关命令 内部编码 应用场景 Zset 相关命令 内部编码 应用场景 渐进式遍历 前言&#xff1a; redis有多种数据类型&…

CSS 实现页面底部加载中与加载完毕效果

效果图 实现代码 <view class"bottom-load-tip"><view class"line-tip"></view><view class"loading-animation" v-if"!lastPage"></view><view>{{ lastPage ? "没有更多了" : "…

自动化测试工具:Airtest入门教程

目录 1.什么是Airtest&#xff1f; 2.AirtestIDE下载安装 3.如何开始使用 4.Airtest入门特例教程 5.总结 1.什么是Airtest&#xff1f; Airtest是一款基于 Python 的、跨平台的UI自动化测试框架。因为它基于 图像识别 的原理&#xff0c;所以适用于所有 Android、 iOS和 …

边写代码边学习之Bidirectional LSTM

1. 什么是Bidirectional LSTM 双向 LSTM (BiLSTM) 是一种主要用于自然语言处理的循环神经网络。 与标准 LSTM 不同&#xff0c;输入是双向流动的&#xff0c;并且它能够利用双方的信息。 它也是一个强大的工具&#xff0c;可以在序列的两个方向上对单词和短语之间的顺序依赖…

Matlab绘制灰度直方图

直方图是根据灰图像绘制的&#xff0c;而不是彩色图像通。查看图像直方图时候&#xff0c;需要先确定图片是否为灰度图&#xff0c;使用MATLAB2019查看图片是否是灰度图片&#xff0c;在读取图片后在MATLAB界面的工作区会显示读取的图像矩阵&#xff0c;如果是&#xff0c;那么…

Cookie 和 Session 的工作流程

目录 一、Cookie是什么&#xff1f; 二、Session是什么? 三、Cookie的工作流程 四、Session的工作流程 五、Session和Cookie的区别和联系 一、Cookie是什么&#xff1f; Cookie是一种在网站和用户之间交换信息的机制。它是由Web服务器发送给用户浏览器的小型文本文件&#xff…

2023国赛数学建模思路 - 案例:异常检测

文章目录 赛题思路一、简介 -- 关于异常检测异常检测监督学习 二、异常检测算法2. 箱线图分析3. 基于距离/密度4. 基于划分思想 建模资料 赛题思路 &#xff08;赛题出来以后第一时间在CSDN分享&#xff09; https://blog.csdn.net/dc_sinor?typeblog 一、简介 – 关于异常…