Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Given the following data definition class, write one line of Java code that creates one object using the default constructor publicclassBook { privateString isbn; privatedoublecost;

Given the following data definition class, write one line of Java code that creates one object using the default constructor

publicclassBook { privateString isbn; privatedoublecost; privatebooleanisNew; publicBook() { this.isNew =true; } publicBook(String isbn) { this(); this.isbn = isbn; } publicBook(String isbn,doublecost) { this(); this.isbn = isbn; this.cost = cost; } publicString getIsbn() {returnthis.isbn; } publicdoublegetCost() {returnthis.cost; } publicbooleanisNew() {returnthis.isNew; } publicvoidsetIsbn(String isbn) { this.isbn = isbn; } publicbooleansetCost(doublecost) { if(cost >= 0) { this.cost = cost; returntrue; } else{ returnfalse; } } publicvoidsetIsNew(booleanisNew) { this.isNew = isNew; } publicbooleandiscount(doublepercentage) { if(percentage > 0) { setCost(this.getCost() -this.getCost() * (percentage/100)); returntrue; } else{ returnfalse; } } }

Step by Step Solution

There are 3 Steps involved in it

Step: 1

Here is the Java code to create an object using the ... blur-text-image

Get Instant Access with AI-Powered Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Introduction to Java Programming, Comprehensive Version

Authors: Y. Daniel Liang

10th Edition

133761312, 978-0133761313

More Books

Students also viewed these Programming questions

Question

How do stakeholders impact the uncertainty in a project?

Answered: 1 week ago