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.

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;
public class Book {
private String name;
private String author;
private double price;
private String type;
private boolean state;
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;
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;
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;
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;
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);
}}
|
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;
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);
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;
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;
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
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;
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;
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;
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;
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;
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;
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 it
1.
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!