Question: The Article class has a default constructor with no parameters. Define a public overloaded constructor that takes two string parameters and an integer parameter for

The Article class has a default constructor with no parameters. Define a public overloaded constructor that takes two string parameters and an integer parameter for the title, the author, and the year of the article.
Ex. If the input is Airport Lee 1906, then the output is:
Article: Unknown, Unnamed, 0
Article: Airport, Lee, 1906
public class Article {
private String title;
private String author;
private int year;
public Article(){// Default constructor
title = "Unknown";
author = "Unnamed";
year =;
}
V" Your code goes here */
public void print(){
System.out.println("Article: "+ title +","+ author +","+ year);
}
}
 The Article class has a default constructor with no parameters. Define

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!