江苏开放大学JAVA程序设计形成性考核作业3题目:简易图书管理系统
目的:能够简易设计可以增删改查的小程序
实验内容:
1、用户分为两类:系统管理员,一般用户。
2、提供用户注册和用户登录验证功能;其中一个登录用户的信息有:登录用户名,登录密码。
3、管理员可以实现对注册用户的管理(删除),并实现对图书的创建、查询、修改和删除等有关的操作
4、一般用户,只能查询图书,并进行借书、还书操作。
设计思路:
BookList类:
1、先创建一个Book类 类型的数组(private 封装)
2、再创建个书的个数的变量 (private 封装),然后创建构造方法,初始化成员(图书)(实例化BookList时直接就运行书架里的内容)(实例化一个Book对象,有参类型,所以Book类哪里要先创建有参的构造方法)
InOperation接口因为每一个操作功能都要有对应的工作,所以干脆创建个接口 ,对代码更好的规范
江苏开放大学JAVA程序设计形成性考核作业3部分源码及运行截图展示:
package book;
public class Book {
private String name;
private String author;
private double price;
private String type;
private boolean borrowed;//默认false
public Book(String name, String author, double 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 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 isBorrowed() {
return borrowed;
}
public class BorrowBook implements InOperation{
public void work(BookList bookList) {
System.out.println("借阅图书");
System.out.println("请输入所借图书名字");
Scanner scanner = new Scanner(System.in);
String name = scanner.nextLine();
int currentSize = bookList.getBook_size();
for(int i = 0; i < currentSize; i++){
Book book = bookList.getBooks(i);
if(book.getName().equals(name)){
if(book.isBorrowed() == false) {
book.setBorrowed(true);
System.out.println("存在该书,欢迎借阅");
}else {
System.out.println("该书不存在,对不起");
}
return;
}
}
}
}
未经授权,禁止转载,发布者:形考达人,出处:https://www.xingkaowang.com/4665.html
本站不对内容的完整性、权威性及其观点立场正确性做任何保证或承诺!内容仅供研究参考,付费前请自行鉴别。
免费答案:形考作业所有题目均出自课程讲义中,可自行学习寻找题目答案,预祝大家上岸成功