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 then the output is:
Article: Unknown, Unnamed,
Article: Airport, Lee,
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.printlnArticle: title author year;
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
