помогите плиз
package com.javarush.task.task05.task0510;
/*
Кошкоинициация
*/
public class Cat {
public String name;
public int age ;
public int weight;
public String address;
public String color;
public void initialize (String name){
this.name = name; //ИМЯ
}
public void initialize (String name, int weight, int age){
this.name = name;
this.age = age;
this.weight = weight; //ИМЯ ВЕС ВОЗРАСТ
}
public void initialize (int age, String name){
this.age = age;
this.weight = weight; //ИМЯ ВОЗРАСТ
}
public void initialize ( int weight, String color){
this.color = color;
this.weight = weight;
} //ЦВЕТ ВЕС
public void initialize ( int weight, String color, String address){
this.address= address;
this.color = color;
this.weight = weight;
}
public static void main(String[] args) {
}
}
