Table of Contents
1. Function introduction
1.1 Usage introduction
1.2 Basic framework
2. Specific ideas
3. Code implementation
book(package)
Book(book)
BookList(bookshelf Class)
operation (function package)
IOperation (functional interface)
FindOperation (find books)
AddOperation (add Books)
DelOperation (delete books)
BorrowOperation (borrow books)
ReturnOperation (return books)
DisplayOperation (print book information )
ExitOperation (exit the system)
user (user package)
User (user abstract class)
AdminUser (Administrator)
NormalUser (Normal user)
Test class
4. Explanation of part of the code (doOperation)
Home Java javaTutorial Detailed explanation of Java graphics and text to implement a library management system

Detailed explanation of Java graphics and text to implement a library management system

Jun 07, 2022 pm 06:57 PM
java

This article brings you relevant knowledge about java, which mainly introduces related issues about how to implement a library management system, including searching for books, adding books, deleting books, and borrowing books Let’s take a look at the content below. I hope it will be helpful to everyone.

Detailed explanation of Java graphics and text to implement a library management system

Recommended study: "java video tutorial"

1. Function introduction

1.1 Usage introduction

1. Enter the name

2. Select the identity

3. Print according to the identity Different function menu

1.2 Basic framework


2. Specific ideas

book(package)

operation(function package)

user(user package)


3. Code implementation

book(package)

Book(book)

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

31

32

33

34

35

36

37

38

39

40

41

42

43

44

45

46

47

48

49

50

51

52

53

54

55

56

57

58

59

60

61

62

63

64

65

66

67

68

69

70

71

package book;/**

 * User: gu'jiu

 * Date: 2022-05-18

 * Time: 14:45

 * Description:书

 */public class Book {

    private String name;//书名

    private String author;//作者

    private double price;//价格

    private String type;//类型

    private boolean state;//书的状态(已借出or未借出)

     

    //对书进行初始化,书的状态不用进行初始化(默认未借出)

    public Book(String name, String author, double price, String type) {

        this.name = name;

        this.author = author;

        this.price = price;

        this.type = type;

        this.state = state;

    }

 

    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 double getPrice() {

        return price;

    }

 

    public void setPrice(double price) {

        this.price = price;

    }

 

    public String getType() {

        return type;

    }

 

    public void setType(String type) {

        this.type = type;

    }

 

    public boolean isState() {

        return state;

    }

 

    public void setState(boolean state) {

        this.state = state;

    }

 

    @Override

    public String toString() {

        return "[" +

                "name='" + name + '\'' +

                ", author='" + author + '\'' +

                ", price=" + price +

                ", type='" + type + '\'' +

                ", " + (state == true ? "已借出" "未借出") +

                ']';

    }}

Copy after login

BookList(bookshelf Class)

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

31

package book;/**

 * User: gu'jiu

 * Date: 2022-05-18

 * Time: 14:52

 * Description:书架

 */public class BookList {

    private Book[] books = new Book[10];

    private int usedSize;

 

    public BookList() {

        books[0] = new Book("三国演义","罗贯中",19.9,"小说");

        books[1] = new Book("西游记","吴承恩",29.9,"小说");

        books[2] = new Book("红楼梦","曹雪芹",26.9,"小说");

        usedSize = 3;

    }

 

    public Book getBooks(int pos) {//输入下标获取该下标的这本书

        return books[pos];

    }

 

    public void setBooks(int pos, Book book) {//输入下标和一本书,在该下标放入一本书

        this.books[pos] = book;

    }

 

    public int getUsedSize() {

        return usedSize;

    }

 

    public void setUsedSize(int usedSize) {

        this.usedSize = usedSize;

    }}

Copy after login

operation (function package)

IOperation (functional interface)

1

2

3

4

5

6

7

package operation;import book.BookList;/**

 * User: gu'jiu

 * Date: 2022-05-18

 * Time: 15:07

 * Description:接口

 */public interface IOperation {

    void work(BookList bookList);}

Copy after login

FindOperation (find books)

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

package operation;import book.Book;import book.BookList;import java.util.Scanner;/**

 * User: gu'jiu

 * Date: 2022-05-18

 * Time: 15:09

 * Description:查找书籍信息

 */public class FindOperation implements IOperation{

    @Override

    public void work(BookList bookList) {

        System.out.println();

        System.out.println("查找图书");

        System.out.println("------------------------");

        Scanner scanner = new Scanner(System.in);

        System.out.print("请输入书的名称:");

        String name = scanner.nextLine();

 

        //获取书架中图书数量

        int size = bookList.getUsedSize();

        //根据名字查找

        for (int i = 0; i < size; i++) {

            Book book = bookList.getBooks(i);

            if (book.getName().equals(name)) {

                System.out.println(book);

                return;

            }

        }

        System.out.println("未找到该书。");

    }}

Copy after login

AddOperation (add Books)

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

package operation;import book.Book;import book.BookList;import java.util.Scanner;/**

 * User: gu&#39;jiu

 * Date: 2022-05-18

 * Time: 15:04

 * Description:新增书籍

 */public class AddOperation implements IOperation{

    @Override

    public void work(BookList bookList) {

        System.out.println();

        System.out.println("添加图书");

        System.out.println("------------------------");

        Scanner scanner = new Scanner(System.in);

        System.out.print("请输入书名:");

        String name = scanner.nextLine();

        System.out.print("请输入作者:");

        String author = scanner.nextLine();

        System.out.print("请输入书的类型:");

        String type = scanner.nextLine();

        System.out.print("请输入价格:");

        double price = scanner.nextDouble();

 

        Book book = new Book(name, author, price, type);

        bookList.setBooks(bookList.getUsedSize(), book);//将书放入书架

 

        bookList.setUsedSize(bookList.getUsedSize()+1);//书籍数量+1

    }}

Copy after login

DelOperation (delete books)

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

31

32

33

34

35

36

package operation;import book.Book;import book.BookList;import java.util.Scanner;/**

 * User: gu&#39;jiu

 * Date: 2022-05-18

 * Time: 15:05

 * Description:删除书籍

 */public class DelOperation implements IOperation{

    @Override

    public void work(BookList bookList) {

        System.out.println();

        System.out.println("删除图书");

        System.out.println("------------------------");

        Scanner scanner = new Scanner(System.in);

        System.out.print("请输入要删除的书名:");

        String name = scanner.nextLine();

 

        //获取书架中现在有几本书

        int size = bookList.getUsedSize();

        int i = 0;

        //根据书名找到这个本书的下标

        for (i = 0; i < size; i++) {

            Book book = bookList.getBooks(i);

            if (book.getName().equals(name)) {

                break;

            }

        }

        if (i == size) {

            System.out.println("删除失败,未找到该书。");

            return;

        }

        //通过前移将书删除

        for (i = 0; i < size - 1; i++) {

            bookList.setBooks(i,bookList.getBooks(i + 1));

        }

        bookList.setUsedSize(bookList.getUsedSize()-1);//书架中图书数量-1

        System.out.println("删除成功。");

    }}

Copy after login

BorrowOperation (borrow books)

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

31

32

33

34

package operation;import book.Book;import book.BookList;import java.util.Scanner;/**

 * User: gu&#39;jiu

 * Date: 2022-05-18

 * Time: 15:05

 * Description:借阅书籍

 */public class BorrowOperation implements IOperation{

    @Override

    public void work(BookList bookList) {

        System.out.println();

        System.out.println("借阅图书");

        System.out.println("------------------------");

        Scanner scanner = new Scanner(System.in);

        System.out.print("请输入要借书的名称:");

        String name = scanner.nextLine();

 

        //获取书架中现在有几本书

        int size = bookList.getUsedSize();

        for (int i = 0; i < size; i++) {

            Book book = bookList.getBooks(i);

            //判断在书架中是否有这本书

            if (book.getName().equals(name)) {

                //判断书是否被借走

                if (!book.isState()) {

                    System.out.println("借阅成功!");

                    book.setState(true);//将书的状态改为已借出

                    return;

                } else {

                    System.out.println("借阅失败,该书已被别人借走。");

                    return;

                }

            }

        }

        System.out.println("借阅失败,未找到该书。");

    }}

Copy after login

ReturnOperation (return books)

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

31

32

33

34

package operation;import book.Book;import book.BookList;import java.util.Scanner;/**

 * User: gu&#39;jiu

 * Date: 2022-05-18

 * Time: 15:10

 * Description:归还书籍

 */public class ReturnOperation implements IOperation{

    @Override

    public void work(BookList bookList) {

        System.out.println();

        System.out.println("归还图书");

        System.out.println("------------------------");

        Scanner scanner = new Scanner(System.in);

        System.out.print("请输入要还书的名称:");

        String name = scanner.nextLine();

 

        //获取书架中现在有几本书

        int size = bookList.getUsedSize();

        for (int i = 0; i < size; i++) {

            Book book = bookList.getBooks(i);

            //判断在书架中是否有这本书

            if (book.getName().equals(name)) {

                //判断书是否已被借走

                if (book.isState()) {

                    System.out.println("归还成功!");

                    book.setState(false);//将书的状态改为未借出

                    return;

                } else {

                    System.out.println("归还失败,该书已还未被借走。");

                    return;

                }

            }

        }

        System.out.println("归还失败,未找到该书。");

    }}

Copy after login

DisplayOperation (print book information )

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

package operation;import book.Book;import book.BookList;/**

 * User: gu&#39;jiu

 * Date: 2022-05-18

 * Time: 15:06

 * Description:打印全部书籍信息

 */public class DisplayOperation implements IOperation{

    @Override

    public void work(BookList bookList) {

        System.out.println();

        System.out.println("显示全部图书");

        System.out.println("------------------------");

        int size = bookList.getUsedSize();

        for (int i = 0; i < size; i++) {

            Book book = bookList.getBooks(i);

            System.out.println(book);

        }

    }}

Copy after login

ExitOperation (exit the system)

1

2

3

4

5

6

7

8

9

10

11

12

13

import book.BookList;/**

 * User: gu&#39;jiu

 * Date: 2022-05-18

 * Time: 15:08

 * Description:退出系统

 */public class ExitOperation implements IOperation{

    @Override

    public void work(BookList bookList) {

        System.out.println();

        System.out.println("退出系统。");

        System.out.println("------------------------");

        System.exit(0);

    }}

Copy after login

user (user package)

User (user abstract class)

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

package user;import book.BookList;import operation.IOperation;/**

 * User: gu&#39;jiu

 * Date: 2022-05-18

 * Time: 15:11

 * Description:使用者

 */abstract public class User {

    protected String userName;//使用者姓名

    protected IOperation[] iOperations;//功能数组

 

    public User(String userName) {

        this.userName = userName;

    }

 

    public abstract int menu();

     

    //输入选择,调用不同的功能

    public void doOperation(int choice, BookList bookList) {

        this.iOperations[choice].work(bookList);//动态绑定

    }}

Copy after login

AdminUser (Administrator)

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

31

32

33

34

35

36

37

38

39

40

41

package user;import operation.*;import java.util.Scanner;/**

 * User: gu&#39;jiu

 * Date: 2022-05-18

 * Time: 15:13

 * Description:管理员

 */public class AdminUser extends User{

    public AdminUser(String userName) {

        super(userName);

        //管理员功能

        this.iOperations = new IOperation[] {

                new ExitOperation(),

                new FindOperation(),

                new AddOperation(),

                new DelOperation(),

                new DisplayOperation()

        };

    }

 

    @Override

    public int menu() {

        System.out.println();

        System.out.println("hello " + this.userName + " 欢迎来到图书馆");

        while(true) {

            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.print("请输入你的操作:");

            Scanner scanner = new Scanner(System.in);

            int choice = scanner.nextInt();

            //保证输入数字有效

            if (choice > 4 || choice < 0) {

                System.out.println("输入有误请重新输入。");

            } else {

                return choice;

            }

        }

    }}

Copy after login

NormalUser (Normal user)

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

31

32

33

34

35

36

37

38

39

package user;import operation.*;import java.util.Scanner;/**

 * User: gu&#39;jiu

 * Date: 2022-05-18

 * Time: 15:13

 * Description:学生

 */public class NormalUser extends User{

    public NormalUser (String userName) {

        super(userName);

        //用户功能

        this.iOperations = new IOperation[] {

                new ExitOperation(),

                new FindOperation(),

                new BorrowOperation(),

                new ReturnOperation(),

        };

    }

 

    @Override

    public int menu() {

        System.out.println();

        System.out.println("hello "+this.userName+" 欢迎来到图书馆");

        while(true) {

            System.out.println("------------------------");

            System.out.println("1.查找图书");

            System.out.println("2.借阅图书");

            System.out.println("3.归还图书");

            System.out.println("0.退出系统");

            System.out.println("------------------------");

            System.out.print("请输入你的操作:");

            Scanner scanner = new Scanner(System.in);

            int choice = scanner.nextInt();

            //保证输入数字有效

            if (choice > 3 || choice < 0) {

                System.out.println("输入有误请重新输入。");

            } else {

                return choice;

            }

        }

    }}

Copy after login

Test class

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

31

32

33

34

35

36

37

38

import book.BookList;import user.AdminUser;import user.NormalUser;import user.User;import java.util.Scanner;/**

 * User: gu&#39;jiu

 * Date: 2022-05-18

 * Time: 15:20

 * Description:图书管理系统

 */public class Test {

    public static User login() {

        System.out.println("欢迎使用图书管理系统");

        Scanner scanner = new Scanner(System.in);

        System.out.print("请输入您的姓名:");

        String name = scanner.nextLine();

 

        while(true){

            System.out.println("-----------------------------");

            System.out.println("请选择您的身份:1>管理员 2>普通用户");

 

            System.out.print("请输入:");

            int choice = scanner.nextInt();

 

            //保证输入数字有效

            if (choice == 1) {

                return new AdminUser(name);

            else if (choice == 2) {

                return new NormalUser(name);

            else {

                System.out.println("输入有误,请重新输入。");

            }

        }

    }

    public static void main(String[] args) {

        BookList bookList = new BookList();

        User user = login();//向上转型

 

        while(true){

            int choice = user.menu();

            user.doOperation(choice, bookList);

        }

    }}

Copy after login

4. Explanation of part of the code (doOperation)

The user.doOperation(choice, bookList); in the main function is difficult to understand. Let’s explain it1.

user.

may refer to two objects
2. When instantiates
this object, in the constructor, we have Prepare iOperations[].
3. Access the corresponding object according to the input subscript
(for example: 2), and then call the work method.
Recommended study: "

java video tutorial

"

The above is the detailed content of Detailed explanation of Java graphics and text to implement a library management system. For more information, please follow other related articles on the PHP Chinese website!

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Repo: How To Revive Teammates
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Square Root in Java Square Root in Java Aug 30, 2024 pm 04:26 PM

Guide to Square Root in Java. Here we discuss how Square Root works in Java with example and its code implementation respectively.

Perfect Number in Java Perfect Number in Java Aug 30, 2024 pm 04:28 PM

Guide to Perfect Number in Java. Here we discuss the Definition, How to check Perfect number in Java?, examples with code implementation.

Random Number Generator in Java Random Number Generator in Java Aug 30, 2024 pm 04:27 PM

Guide to Random Number Generator in Java. Here we discuss Functions in Java with examples and two different Generators with ther examples.

Weka in Java Weka in Java Aug 30, 2024 pm 04:28 PM

Guide to Weka in Java. Here we discuss the Introduction, how to use weka java, the type of platform, and advantages with examples.

Armstrong Number in Java Armstrong Number in Java Aug 30, 2024 pm 04:26 PM

Guide to the Armstrong Number in Java. Here we discuss an introduction to Armstrong's number in java along with some of the code.

Smith Number in Java Smith Number in Java Aug 30, 2024 pm 04:28 PM

Guide to Smith Number in Java. Here we discuss the Definition, How to check smith number in Java? example with code implementation.

Java Spring Interview Questions Java Spring Interview Questions Aug 30, 2024 pm 04:29 PM

In this article, we have kept the most asked Java Spring Interview Questions with their detailed answers. So that you can crack the interview.

Break or return from Java 8 stream forEach? Break or return from Java 8 stream forEach? Feb 07, 2025 pm 12:09 PM

Java 8 introduces the Stream API, providing a powerful and expressive way to process data collections. However, a common question when using Stream is: How to break or return from a forEach operation? Traditional loops allow for early interruption or return, but Stream's forEach method does not directly support this method. This article will explain the reasons and explore alternative methods for implementing premature termination in Stream processing systems. Further reading: Java Stream API improvements Understand Stream forEach The forEach method is a terminal operation that performs one operation on each element in the Stream. Its design intention is

See all articles