Java - Classes and Objects
Identify the problem in this code snippet:
class Book {
String title;
void setTitle(String title) {
title = title;
}
void printTitle() {
System.out.println(title);
}
}