考虑到大家看着一大堆冗长且无趣的专业术语和代码就没有了学习的兴趣。 我特地学会了新技能 就是画思维导图!! 这样能够让大家更加容易地去理解其中地概念和内容

那么随着我们的JavaSE初阶的学习博客完结到达尾声,这一篇带着大家做一个小项目,然后借此串联之前所学的内容,达到复习和巩固的效果
首先我们来构建一个大致框架
Library System.png
一个图书管理系统,要有书,放书的地方,管理图书的功能,以及使用者
我们就分别创建三个包和一个Main的程序的入口类,写对应的代码
image.png

BOOK

Book介绍

那么我们先从书开始搭建
Book.png
对于书这个类来说,它有一些属性,比如书名,作者,价格,以及它的类型
它也有一些状态,这里我就用borrowed(即是否被借出的状态)
我们为了达到封装的目的,就要把属性都带上private
image.png
那么这里外部类使用的时候就不能访问到相关属性了
怎么办呢?
那就开放一些接口,比如getName用来得到姓名的信息,setName用来修改name的值
image.png
然后我们再重写一下Book类的父类Object中的toString方法,以此让用户更方便地获取书籍的信息
image.png

Book源码

  1. package book;
  2. /**
  3. * @ Author 12629
  4. * @ Date 2022/4/10 11:41
  5. * @ Description:
  6. */
  7. public class Book {
  8. private String name;//书名
  9. private String author;//作者
  10. private int price;//价格
  11. private String type;//类型
  12. private int id;//书号
  13. private boolean isBorrowed;//是否被借出
  14. public Book(int id,String name, String author, int price, String type) {
  15. this.name = name;
  16. this.author = author;
  17. this.price = price;
  18. this.type = type;
  19. }
  20. public String getName() {
  21. return name;
  22. }
  23. public void setName(String name) {
  24. this.name = name;
  25. }
  26. public String getAuthor() {
  27. return author;
  28. }
  29. public void setAuthor(String author) {
  30. this.author = author;
  31. }
  32. public int getPrice() {
  33. return price;
  34. }
  35. public void setPrice(int price) {
  36. this.price = price;
  37. }
  38. public String getType() {
  39. return type;
  40. }
  41. public void setType(String type) {
  42. this.type = type;
  43. }
  44. public boolean isBorrowed() {
  45. return isBorrowed;
  46. }
  47. public void setBorrowed(boolean borrowed) {
  48. isBorrowed = borrowed;
  49. }
  50. public int getId() {
  51. return id;
  52. }
  53. public void setId(int id) {
  54. this.id = id;
  55. }
  56. @Override
  57. public String toString() {
  58. return "Book{" +
  59. "name='" + name + '\'' +
  60. ", author='" + author + '\'' +
  61. ", price=" + price +
  62. ", type='" + type + '\'' +
  63. ", id=" + id +
  64. ", isBorrowed=" + isBorrowed +
  65. '}';
  66. }
  67. }

BookList介绍

Booklist.png
那么一个书单(哈哈哈就当作是书架吧)需要书,那我们就给它new几本书出来,但这个时候books其实是一个空的对象数组,它就相当于一个空的书架,我们需要往上面加几本书,那么正好可以利用我们的构造函数初始化一下,让它一开始就有三本书。
再定义一个usedSize,表示书架上书籍的数量
image.png
那么同样我们也要设置一些get和set的方法来访问到这些属性

BookList源码

  1. package book;
  2. /**
  3. * @ Author 12629
  4. * @ Date 2022/4/10 11:45
  5. * @ Description:书架类
  6. */
  7. public class BookList {
  8. private Book[] books = new Book[10];//这个书架的大小
  9. private int usedSize;//数组中放了几本书
  10. public BookList() {
  11. books[0] = new Book(1,"三国演义","罗贯中",90,"小说");
  12. books[1] = new Book(2,"西游记","吴承恩",78,"小说");
  13. books[2] = new Book(3,"红楼梦","曹雪芹",89,"小说");
  14. this.usedSize = 3;
  15. }
  16. /**
  17. * 获取当前数组当中的元素的个数
  18. * @ return
  19. */
  20. public int getUsedSize() {
  21. return usedSize;
  22. }
  23. /**
  24. * 修改当前数组中元素的个数
  25. * @ param usedSize
  26. */
  27. public void setUsedSize(int usedSize) {
  28. this.usedSize = usedSize;
  29. }
  30. //可以再这里面 写所有对数组的操作 借书 还书.......
  31. /**
  32. * 获取pos下标的书
  33. * @ param pos
  34. * @ return
  35. */
  36. public Book getPos(int pos) {
  37. return books[pos];
  38. }
  39. /**
  40. * 给数组的pos位置 放一本书
  41. * @param pos
  42. * @param book
  43. */
  44. public void setBooks(int pos,Book book) {
  45. books[pos] = book;
  46. }
  47. /* dpublic void work() {
  48. System.out.println("新增图书!");
  49. }*/
  50. }

OPERATION

Operation介绍

OPERATION.png

这个包主要就是写好多好多功能

那么我们为了达到代码复用的理念,这里就要用到接口了

我们在之前有专门对接口进行讲解的博客,不太了解的小伙伴们可以去看看哦 👉一篇带你吃透Java接口

IOpreation(接口)

那么我们要实现的所有功能,都需要去操作,我们可以称为“可操作的”那么需要实现这个功能,我们可以写一个统一的接口,来提高代码的耦合度和复用性,也能够让大家更加熟悉接口的概念。
那么我们的接口中就放一个work方法就OK了
image.png
IOperation源码

  1. package operation;
  2. import book.BookList;
  3. /**
  4. * Created with IntelliJ IDEA.
  5. * Description: Hello,I would appreciate your comments~
  6. * User:
  7. * Date: -04-12
  8. * Destination:接口,用来实现各类操作
  9. */
  10. public interface IOperation {
  11. void work(BookList bookList);
  12. }

AddOperation

addOperation.png
那么我们要输入新增图书的各类信息,导入之后,再去BookList上把书塞进去
AddOpreation源码

  1. package operation;
  2. import book.BookList;
  3. /**
  4. * @ Author 12629
  5. * @ Date 2022/4/10 11:54
  6. * @ Description:增加图书
  7. */
  8. import book.Book;
  9. import book.BookList;
  10. import java.util.Scanner;
  11. public class AddOperation implements IOperation{
  12. @Override
  13. public void work(BookList bookList) {
  14. System.out.println("新增一本书籍!");
  15. System.out.println("请输入书籍的ID");
  16. Scanner scanner = new Scanner(System.in);
  17. int id = scanner.nextInt();
  18. System.out.println("请输入新增书籍的书名: ");
  19. String name = scanner.next();
  20. System.out.println("请输入新增书籍的作者: ");
  21. String author = scanner.next();
  22. System.out.println("请输入新增书籍的类型: ");
  23. String type = scanner.next();
  24. System.out.println("请输入新增书籍的价格: ");
  25. int price = scanner.nextInt();
  26. Book book = new Book(id,name,author, price,type);
  27. bookList.setBooks(bookList.getUsedSize(), book);
  28. bookList.setUsedSize(bookList.getUsedSize() + 1);
  29. }
  30. }

BorrowOperation

BorrowOperation.png
源码如下

  1. package operation;
  2. import book.Book;
  3. import book.BookList;
  4. import java.util.Scanner;
  5. /**
  6. * @ Author 12629
  7. * @ Date 2022/4/10 11:56
  8. * @ Description:
  9. */
  10. public class BorrowOperation implements IOperation {
  11. @Override
  12. public void work(BookList bookList) {
  13. System.out.println("借阅书籍!");
  14. System.out.println("请输入要借阅的书籍的id: ");
  15. Scanner scanner = new Scanner(System.in);
  16. int id = scanner.nextInt();
  17. for (int i = 0; i < bookList.getUsedSize(); i++) {
  18. Book book = bookList.getPos(i);
  19. if (!(id == book.getId())) {
  20. continue;
  21. }
  22. if (book.isBorrowed()) {
  23. System.out.println("此书已经被借走了!");
  24. break;
  25. }
  26. book.setBorrowed(true);
  27. System.out.println("借阅成功");
  28. }
  29. }
  30. }

DelOperation

DelOperation.png
源码

  1. package operation;
  2. import book.Book;
  3. import book.BookList;
  4. /**
  5. * Created with IntelliJ IDEA.
  6. * Description: Hello,I would appreciate your comments~
  7. * User:
  8. * Date: -04-12
  9. * Destination: 删除书籍
  10. */
  11. import java.util.Scanner;
  12. public class DelOperation implements IOperation {
  13. @Override
  14. public void work(BookList bookList) {
  15. System.out.println("删除书籍!");
  16. System.out.println("请输入您想要删除书籍的id: ");
  17. Scanner scanner = new Scanner(System.in);
  18. int id = scanner.nextInt();
  19. int i = 0;
  20. for (; i < bookList.getUsedSize(); i++) {
  21. Book book = bookList.getPos(i);
  22. if (book.getId()==id) {
  23. break;
  24. }
  25. }
  26. if (i >= bookList.getUsedSize()) {
  27. System.out.println("未找到要找的书籍!");
  28. return;
  29. }
  30. Book lastBook = bookList.getPos(bookList.getUsedSize() - 1);
  31. bookList.setBooks(i, lastBook);
  32. bookList.setUsedSize(bookList.getUsedSize() - 1);
  33. System.out.println("删除成功!");
  34. }
  35. }

DisplayOperation

比较简单,直接上代码

  1. package operation;
  2. import book.Book;
  3. import book.BookList;
  4. /**
  5. * Created with IntelliJ IDEA.
  6. * Description: Hello,I would appreciate your comments~
  7. * User:
  8. * Date: -04-12
  9. * Destination: 查看所有图书
  10. */
  11. public class DisplayOperation implements IOperation {
  12. public void work(BookList bookList) {
  13. System.out.println("显示图书!");
  14. int currentSize = bookList.getUsedSize();
  15. for (int i = 0; i < currentSize; i++) {
  16. Book book = bookList.getPos(i);
  17. System.out.println(book);
  18. }
  19. }
  20. }

ExitOperation

  1. package operation;
  2. import book.BookList;
  3. /**
  4. * Created with IntelliJ IDEA.
  5. * Description: Hello,I would appreciate your comments~
  6. * User:
  7. * Date: -04-12
  8. * Destination: 退出系统
  9. */
  10. public class ExitOperation implements IOperation {
  11. public void work(BookList bookList) {
  12. //有可能 需要销毁,或者使用到 这个数组当中的所有的数据
  13. System.out.println("退出系统!");
  14. /*int currentSize = bookList.getUsedSize();
  15. for (int i = 0; i < currentSize; i++) {
  16. bookList.setBooks(i,null);
  17. }*/
  18. System.exit(0);
  19. }
  20. }

FindOperation

FindOperation.png
源码

  1. package operation;
  2. import book.Book;
  3. import book.BookList;
  4. import java.util.Scanner;
  5. /**
  6. * Created with IntelliJ IDEA.
  7. * Description: Hello,I would appreciate your comments~
  8. * User:Gremmie
  9. * Date: -04-12
  10. * Destination: 查找书籍
  11. */
  12. public class FindOperation implements IOperation {
  13. @Override
  14. public void work(BookList bookList) {
  15. System.out.println("查找书籍!");
  16. System.out.println("请输入要查找书籍的书名: ");
  17. Scanner scanner = new Scanner(System.in);
  18. String name = scanner.next();
  19. int count = 0;
  20. for (int i = 0; i < bookList.getUsedSize(); i++) {
  21. Book book = bookList.getPos(i);
  22. if (book.getName().equals(name)) {
  23. System.out.println(book);
  24. count++;
  25. }
  26. }
  27. if (count == 0) {
  28. System.out.println("没找到此书籍!");
  29. } else {
  30. System.out.println("共找到 " + count + " 本相同书籍!");
  31. }
  32. }
  33. }

RetuenOperation

ReturnOperation.png

  1. package operation;
  2. import book.BookList;
  3. import book.Book;
  4. import java.util.Scanner;
  5. /**
  6. * Created with IntelliJ IDEA.
  7. * Description: Hello,I would appreciate your comments~
  8. * User:
  9. * Date: -04-12
  10. * Destination:还书
  11. */
  12. public class ReturnOperation implements IOperation {
  13. @Override
  14. public void work(BookList bookList) {
  15. System.out.println("归还书籍!");
  16. System.out.println("请输入要归还书籍的id: ");
  17. Scanner scanner = new Scanner(System.in);
  18. int id = scanner.nextInt();
  19. int i = 0;
  20. for ( ; i < bookList.getUsedSize(); i++) {
  21. Book book = bookList.getPos(i);
  22. if (book.getId()!=id) {
  23. continue;
  24. }
  25. if (!book.isBorrowed()) {
  26. System.out.println("这本书未借出去,归还失败!");
  27. }
  28. book.setBorrowed(false);
  29. }
  30. }
  31. }

USER

那么user可以分为普通用户和管理员用户,这里可以将用户设置为一个抽象类或者是接口
抽象类很好写,只要写他们之间的共性就OK了
image.png

  1. package user;
  2. import book.BookList;
  3. import operation.IOperation;
  4. /**
  5. * @ Author 12629
  6. * @ Date 2022/4/10 12:04
  7. * @ Description:user的抽象类,用来被继承
  8. */
  9. abstract public class User {
  10. protected String name;
  11. protected IOperation[] IOperations;
  12. public User(String name) {
  13. this.name = name;
  14. }
  15. abstract public int menu();
  16. public void doOperation(int choice, BookList bookList) {
  17. IOperations[choice].work(bookList);
  18. }
  19. }

AdminUser

管理员用户和普通用户能做的事情不一样,他们的menu也不一样
image.png
我们需要在管理员用户的类中继承User的抽象类并重写其中的一些方法
再往接口数组里面放一些功能性的对象
image.png
源码👇

  1. package user;
  2. import operation.*;
  3. import java.util.Scanner;
  4. /**
  5. * @ Author 12629
  6. * @ Date 2022/4/10 12:05
  7. * @ Description:管理员
  8. */
  9. public class AdminUser extends User{
  10. public AdminUser(String name) {
  11. super(name);
  12. this.IOperations = new IOperation[] {
  13. new ExitOperation(),
  14. new FindOperation(),
  15. new AddOperation(),
  16. new DelOperation(),
  17. new DisplayOperation()
  18. };
  19. }
  20. public int menu() {
  21. System.out.println("hello "+this.name+" 欢迎来到图书小练习");
  22. System.out.println("1.查找图书");
  23. System.out.println("2.新增图书");
  24. System.out.println("3.删除图书");
  25. System.out.println("4.显示图书");
  26. System.out.println("0.退出系统");
  27. System.out.println("请输入你的操作:");
  28. Scanner sca = new Scanner(System.in);
  29. int choice = sca.nextInt();
  30. return choice;
  31. }
  32. }

NormalUser

普通用户同理
image.png
image.png
源码👇

  1. package user;
  2. import operation.*;
  3. import java.util.Scanner;
  4. /**
  5. * @ Author 12629
  6. * @ Date 2022/4/10 12:05
  7. * @ Description:普通用户
  8. */
  9. public class NormalUser extends User {
  10. public NormalUser(String name) {
  11. super(name);
  12. this.IOperations = new IOperation[] {
  13. new ExitOperation(),
  14. new FindOperation(),
  15. new BorrowOperation(),
  16. new ReturnOperation()
  17. };
  18. }
  19. public int menu() {
  20. System.out.println("hello "+this.name+" 欢迎来到图书小练习");
  21. System.out.println("1.查找图书");
  22. System.out.println("2.借阅图书");
  23. System.out.println("3.归还图书");
  24. System.out.println("0.退出系统");
  25. System.out.println("请输入你的操作:");
  26. Scanner sca = new Scanner(System.in);
  27. int choice = sca.nextInt();
  28. return choice;
  29. }
  30. }

Main

那么我们需要在这个程序进入的地方设置一个登录方法,然后在main方法中调用,运用while达到循环操作,while中通过choice来判断进入哪个user界面
Main.png

  1. import book.BookList;
  2. import user.AdminUser;
  3. import user.NormalUser;
  4. import user.User;
  5. import java.util.Scanner;
  6. /**
  7. * @ Author 12629
  8. * @ Date 2022/4/10 11:38
  9. * @ Description:程序进入的Main类
  10. */
  11. public class Main {
  12. public static User login() {
  13. System.out.println("请输入姓名:");
  14. Scanner scan = new Scanner(System.in);
  15. String name = scan.nextLine();
  16. System.out.println("请输入你的身份:1-》管理员,0-》普通用户");
  17. int choice = scan.nextInt();
  18. if(choice == 1) {
  19. return new AdminUser(name);
  20. }else {
  21. return new NormalUser(name);
  22. }
  23. }
  24. public static void main(String[] args) {
  25. //准备好了书
  26. BookList bookList = new BookList();
  27. User user = login();//user到底引用哪个对象 需要看
  28. while(true) {
  29. int choice = user.menu();
  30. //user引用哪个对象?
  31. // 选择了1之后,调用的是user引用的对象的具体操作,这个怎么做??
  32. user.doOperation(choice,bookList);
  33. }
  34. }
  35. }

运行示例

  1. E:\develop\Java\jdk-11\bin\java.exe "-javaagent:E:\IDEA\IntelliJ IDEA Community Edition 2021.3.2\lib\idea_rt.jar=59768:E:\IDEA\IntelliJ IDEA Community Edition 2021.3.2\bin" -Dfile.encoding=UTF-8 -classpath E:\JAVAcode\gyljava\TestBook\out\production\TestBook Main
  2. 请输入姓名:
  3. geyuli
  4. 请输入你的身份:1-》管理员,0-》普通用户
  5. 1
  6. hello geyuli 欢迎来到图书小练习
  7. 1.查找图书
  8. 2.新增图书
  9. 3.删除图书
  10. 4.显示图书
  11. 0.退出系统
  12. 请输入你的操作:
  13. 1
  14. 查找书籍!
  15. 请输入要查找书籍的书名:
  16. 三国演义
  17. Book{name='三国演义', author='罗贯中', price=90, type='小说', id=0, isBorrowed=false}
  18. 共找到 1 本相同书籍!
  19. hello geyuli 欢迎来到图书小练习
  20. 1.查找图书
  21. 2.新增图书
  22. 3.删除图书
  23. 4.显示图书
  24. 0.退出系统
  25. 请输入你的操作:
  26. 0
  27. 退出系统!
  28. Process finished with exit code 0

那么简单的图书管理系统就完成了
画图不易码字不易,希望大家多多支持和指点错误
感谢阅读~