Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

CHALLENGE ACTIVITY 7 . 9 . 3 : Constructor overloading. 5 2 8 0 4 0 . 3 4 8 9 5 2 8 .

CHALLENGE
ACTIVITY
7.9.3: Constructor overloading.
528040.3489528.93zqy7
Jump to level 1
The Book class has a default constructor with no parameters. Define a public overloaded constructor that takes two string parameters and initializes the book's title and author with the strings.
Ex: If the input is Gold Cook, then the output is:
Book: None, None
Book: Gold, Cook
Library.java
public class Book {
private String title;
private String author;
public Book(){// Default constructor
title = "None";
}
author = "None";
V* Your code goes here */
public void print(){
System.out.println("Book: "+ title +","+ author);
}
1
2
3
image text in transcribed

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored 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

Professional Visual Basic 6 Databases

Authors: Charles Williams

1st Edition

1861002025, 978-1861002020

More Books

Students also viewed these Databases questions

Question

1. What are the peculiarities of viruses ?

Answered: 1 week ago

Question

Describe the menstrual cycle in a woman.

Answered: 1 week ago