Answered step by step
Verified Expert Solution
Question
1 Approved Answer
In Java, Write a class called Book that contains instance data for the title, author, publisher, price, and copyright date. Define the Book constructor to
In Java,
Write a class called Book that contains instance data for the title, author, publisher, price, and copyright date. Define the Book constructor to accept and initialize this data. Include setter and getter methods for all instance data. Include a toString method that returns a nicely formatted, multi-line description of the book. Write another class called Bookshelf, which has name and array of Book objects. Bookself capacity is maximum of five books. Includes method for Bookself that adds, removes, isFull( returns Boolean), isEmpty(returns Boolean) and toString method that returns all information about the Books in the Bookself.+ Create a driver class called TestBookshelf, whose main method instantiates five Book objects, instantiates one Bookshelf, updates the Books, and add or remove the Books to the Bookshelf. Make sure to print information of the Bookshelf every time you update the Books or the Bookshelf. Add as many API that you think is good to have for the Bookshelf classStep by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started