Question: CHALLENGE ACTIVITY 7 . 9 . 3 : Constructor overloading. 5 2 8 0 4 0 . 3 4 8 9 5 2 8 .
CHALLENGE
ACTIVITY
: Constructor overloading.
Jump to level
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.printlnBook: title author;
Step by Step Solution
There are 3 Steps involved in it
1 Expert Approved Answer
Step: 1 Unlock
Question Has Been Solved by an Expert!
Get step-by-step solutions from verified subject matter experts
Step: 2 Unlock
Step: 3 Unlock
