package com.javarush.task.task05.task0510; /* Кошкоинициация */ public class Cat { String name = null; int age; int weight; String color; String address = null; public void initialize(String name) { this.name = name; this.age = 2; this.weight = 6; this.color = "black"; this.address = "address"; } public void initialize(String name,int weight, int age ) { this.name = name; this.age = age; this.weight = weight; this.color = "black"; // this.address = "address"; } public void initialize(String name, int age) { this.name = name; this.age = age; this.weight = 4; this.color = "black"; this.address = "address"; } public void initialize(int weigth, String color) { this.name = null; this.age = 5; this.weight = weigth; this.color = color; this.address = null; } public void inilialize(int weigth, String color, String address) { this.name = "name"; this.age = 5; this.weight = weigth; this.color = color; this.address = address; } //напишите тут ваш код public static void main(String[] args) { } }