Title
class Book (Part 1) Close Book
- Define 1 argument constructor for title,
- Define toString method for id and title.
- Generate unique id for each object
- Create a public getter that has Book Count
- Define tester method that initializes at least 2 books, outputs id and title, and provides a count of books in library.
public class Book {
String title;
public Book (String title){
}
public
}