public class Book { private String title; private String author; private int year; private Member borrower; public Book(String t, String a, int y) { this.title = t; this.author = a; this.year = y; } public String toString() { return String.format("%s by %s, %d", "\""+title+"\"", author, year); } }