Question
Book: - title: String - price: double +Book() +Book(String, double) +getTitle(): String +setTitle(String): void +getPrice(): double +setPrice(double): void +toString(): String The class has two attributes,
Book:
- title: String
- price: double
+Book()
+Book(String, double)
+getTitle(): String
+setTitle(String): void
+getPrice(): double
+setPrice(double): void
+toString(): String
The class has two attributes, title and price, and get/set methods for the two attributes. The first constructor doesnt have a parameter. It assigns to title and 0.0 to price; The second constructor uses passed-in parameters to initialize the two attributes. The toString() method returns values for the two attributes. Notation: - means private, and + means public.
1. Define the Book.java class. 2. define another class named BookApp.java which has a main() method. 3. create a Book object, named b1, by calling the first Book constructor. Then using the object b1 to call setTitle() and setPrice() methods to assign John Doe to title and 8.1 to price. using b1 to call toString() method and print the returned value from the toString() method. create another Book object, named b2, by calling the second Book constructor and passing Ann Smith as the first argument and 9.2 as the second argument. using b2 to call toString() method and print the returned value from the toString() method.
in JAVA (NetBeans IDE 8.2)
Step 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