public class Book { private final String title; public Book(String title) { this.title = title; } public Book() { this("Default Title"); } ... }