public class Book {
String title;
boolean borrowed;
// Creates a new Book
public Book(String bookTitle){
bookTitle= "The Da Vinci Code";
}
// Marks the book as rented
public void borrowed() {
}
// Marks the book as not rented
public void returned() {
}
基本上为了家庭作业,我必须做一个书类,这些方法是我不知道如何填写的部分。我不知道如何制作方法来将这本书标记为借用和归还,所以我可以将它们用于一个我没有发布的布尔方法,因为我想自己弄清楚其余的。