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;
}
}
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;
}
}