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; this.age = 3; this.weight = 5; this.color = "Gray"; //кроме адреса } public void initialize(String name, int weight, int age){ //имя, вес, возраст this.name = name; this.weight = weight; this.age = age; this.color = "Black"; //кроме адреса. } public void initialize(String name, int age){ //имя, возраст this.name = name; this.age = age; this.weight = 5; this.color = "Brown"; //кроме адреса. } public void initialize(int weight, String color){ // вес, цвет this.weight = weight; this.color = color; this.age = 6; //кроме имени и адреса. } public void initialize(int weight, String color, String address){ //вес, цвет, адрес this.weight = weight; this.color = color; this.address = address; this.age = 8; //кроме имени. } public static void main(String[] args) { } }