public class Book { public final String author, title; public int price; public Book(String author, String title, int price) { this.author = author; this.title = title; this.price = price; } @Override public String toString() { return String.format("Book[%s: %s (%d)]", author, title, price); } }