What is the purpose of a constructor in Java classes?
class Book {
String title;
Book(String newTitle) {
title = newTitle;
}
}
What is the purpose of a constructor in Java classes?
class Book {
String title;
Book(String newTitle) {
title = newTitle;
}
}