почитал все ответы на эту тему, но так и не понял. что не так то?
package com.javarush.task.task05.task0510;
/*
Кошкоинициация
*/
public class Cat {
//напишите тут ваш код
private String address;
private String color;
private String name;
private int age;
private int weight;
public void initialize(String name){
this.name = name;
this.weight = 5;
this.age = 3;
this.color = "grey"; }
public void initialize(String name, int weight, int age) {
this.name = name;
this.weight = weight;
this.age = age;
this.color = "red"; }
public void initialize(String name, int age) {
this.name = name;
this.weight = weight;
this.age = age;
this.color = "red"; }
public void initialize(int weight, String color) {
this.weight = 5;
this.age = age;
this.color = "red"; }
public void initialize(int weight, String color, String address) {
this.weight = 6;
this.age = 4;
this.color = "red";
this.address = address; }
public static void main(String[] args) {
}
}