Не знаю даже чего добавить.
package com.javarush.task.task05.task0510;
/*
Кошкоинициация
*/
public class Cat {
String name = null;
int age = 1;
int weight = 2;
String address = null;
String color = "синий";
public void initialize(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(String name, int weight) {
this.name = name;
this.weight = weight;
}
public void initialize(int weight, String color) {
this.weight = weight;
this.color = color;
}
public void initialize(int weight, String color, String address) {
this.weight = weight;
this.color = color;
this.address = address;
}
}