java 创建一个图书类,类中包含的属性有:书名,作者、出版社;包含的方法有:设置书籍状态,查看书籍状态。书籍状态有在馆和外借两种。
时间: 2024-03-08 14:49:16 浏览: 158
好的,我可以帮你创建一个Java图书类,包含书名、作者、出版社属性和设置状态、查看状态方法。以下是代码示例:
```java
public class Book {
private String title; //书名
private String author; //作者
private String publisher; //出版社
private boolean isBorrowed; //状态:true表示借出,false表示在馆
//构造方法
public Book(String title, String author, String publisher) {
this.title = title;
this.author = author;
this.publisher = publisher;
this.isBorrowed = false; //默认在馆
}
//设置书籍状态
public void setBookStatus(boolean isBorrowed) {
this.isBorrowed = isBorrowed;
}
//查看书籍状态
public String getBookStatus() {
if (isBorrowed) {
return "该书已被借出";
} else {
return "该书在馆";
}
}
}
```
以上是一个简单的Java图书类示例,你可以根据自己的需求进行修改或补充。
阅读全文