Question: uctures home > 9 . 6 : Constructor overloading The Animal class has a default constructor, a constructor with one parameter, and a constructor with
uctures home : Constructor overloading
The Animal class has a default constructor, a constructor with one parameter, and a constructor with three parameters. Declare the following objects:
animal with no arguments
animal with animalType as an argument
animal with animalType, animalColor, and animalAge as arguments
Ex If the input is eagle yellow then the output is:
Animal: Unknown, Undefined,
Animal: eagle, Undefined,
Animal: eagle, yellow,
import java.util.Scanner;
public class zoo
public static void mainstring args
scanner scnr new Scanner
System.in;
string animaltype;
String animalcolor;
int animalAge;
animaltype ;
animalcolor nnext;
animalAge nextInt ;
Y your code goes here
animalprint;
animalprint;
animalprint;
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
