What does the following Java code snippet demonstrate?
class Book {
private String author;
private void setAuthor(String author) {
this.author = author;
}
}
What does the following Java code snippet demonstrate?
class Book {
private String author;
private void setAuthor(String author) {
this.author = author;
}
}