где-то ошибка(((
package com.javarush.task.task05.task0510;
/*
Кошкоинициация
*/
public class Cat {
//напишите тут ваш код
private String cat;
String name = null;
int age =1;
int weight =1;
String color = "средний";
String address = null;
public void intialize(String name)
{
this.name = name;
}
public void initialize(String name, int weight, int age)
{
this.name = name;
this.weight = weight;
this.age = age;
}
public void initialize(int age, String name, int weight)
{
this.age = age;
this.name = name;
this.weight = weight;
}
//бездомный кот(имя, адрес и возраст не известны
public void initialize(int weight,String color, String name, String address, int age)
{
this.weight = weight;
this.color = color;
this.name = name;
this.address = address;
this.age = age;
}
// чужой домашний кот
public void initialize(int weight, String color, String address)
{
this.weight = weight;
this.color = color;
this.address = address;
}
public static void main(String[] args) {
}
}