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