答案 0 :(得分:1)
在文件开头,您可能错过了:
import something.something.Book;
<>在eclipse中,转到错误行,控制+ 1,导入...(弹出项目的第一项)。
否则,您错过了整个Book
类:
class Book {
private String title;
private int isbn;
private int quantity;
public Book(String title, int isbn, int quantity) {
this.title = title;
this.isbn = isbn;
this.quantity = quantity;
}
}