Все же верно,на что он жалуется?
package com.javarush.task.task05.task0517;
/*
Конструируем котиков
*/
public class Cat {
private String name;
private int weight;
private String address;
private String color;
private int age;
public Cat(String name)
{
this.name = name;
this.age = 3;
this.weight = 4;
this.address = null;
this.color = "Благ";
}
public Cat(String name, int weight, int age)
{
this.name = name;
this.weight = weight;
this.age = age;
this.color = "Черный";
this.address = null;
}
public Cat(String name,int age)
{
this.name = name;
this.age = age;
this.weight = 2;
this.color = "Grey";
this.address = null;
}
public Cat(int weight, String color)
{
this.name = null;
this.weight = weight;
this.color = color;
this.address = null;
this.age = 2;
}
public Cat(String color, int weight, String address)
{
this.color = color;
this.weight = weight;
this.address = address;
this.age = 2;
this.name = null;
}
public static void main(String[] args) {
}
}