Question: Can any one do this assignment with java language You need to program a simple book library system. There are three java classes Book.java Library.java
You need to program a simple book library system. There are three java classes Book.java Library.java library class A2.java The Book.java class represents book objects which contain the following fields title: a string which represents the book title author: a string to hold the book author name year: book publication year isbn: a string of 10 numeric numbers The book class will have also 3 constructors. -The default no argument constructor - A constructor which takes the title and author names only A constructor which takes title, author and,year For the book class, you need to add all setters and getters methods such as setTitle /getTitle setAuthor/getAuthor setYear/getYear setISBN/getISBN finally, define a bookInfoO method which will print the book information in the following format Book Title: "book title" Author(S): author Publication Year: the year ISBN: the isbn number // book object class //for testing
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
