私は本のクラスを持っています。リストの最後に要素を追加したい
public class Book {
private String title;
private String authorName;
private double price;
/**
* @param title
* @param authorName
* @param price
*/
public Book(String title, String authorName, double price) {
setTitle(title);
setAuthorName(authorName);
setPrice(price);
}
public String getTitle() {
return title;
}
public void setTitle(String title) {
this.title = title;
}
public String getAuthorName() {
return authorName;
}
public void setAuthorName(String authorName) {
this.authorName = authorName;
}
public double getPrice() {
return price;
}
public void setPrice(double price) {
this.price = Math.abs(price);
}
}
そして、本をリストに追加するメソッドappendを持つBooklistクラスですが、リストに値を入力する方法を理解することができません
public class BookList {
/**
* books will be stored in an array of strings
*/
private Book[] books;
// *** TODO *** you will need to add more private members variables
public BookList(int N) {
// TODO Auto-generated method stub
}
public void append(Book book) throws BookListFull {
// TODO Auto-generated method stub
}
}
リストの最後に要素を追加したいのですが、その方法を教えてください。