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