Не могу понять на что.Все конструкторы ведь разные:\
package com.javarush.task.task05.task0517;
/*
Конструируем котиков
*/
public class Cat {
String name;
String color;
String address;
int weight;
int age;
public Cat(String name){
this.name = name;
}
public Cat(String name,int weight,int age){
this.name = name;
this.weight = weight;
this.age = age;
}
public Cat(String name,int age){
this.name = name;
this.age = age;
}
public Cat(String color,int weight){
this.color = color;
this.weight = weight;
}
public Cat(String address,String color,int weight){
this.color = color;
this.weight = weight;
this.address = address;
}
//напишите тут ваш код
public static void main(String[] args) {
}
}