0 / 60 seg.

Which of the following best describes the use of this keyword in Java?

public class Book {
    private String title;
    public Book(String title) {
        this.title = title;
    }
}