Here I' comparing but only the title of the book. But after that I want to compare it with the author and the book no. As I know there must be only one override method. So please help me on this.
@Override
public int compareTo(Book bk) {
return this.bookTitle.compareTo(bk.bookTitle);
}