Java - Constructors
How can you modify this class to allow creating objects with either no parameters or with parameters?
class Animal {
String type;
int legs;
Animal(String t, int l) {
type = t;
legs = l;
}
}How can you modify this class to allow creating objects with either no parameters or with parameters?
class Animal {
String type;
int legs;
Animal(String t, int l) {
type = t;
legs = l;
}
}15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions