0 / 60 seg.

What is the purpose of a constructor in Java classes?

class Book {
    String title;
    Book(String newTitle) {
        title = newTitle;
    }
}