??
package com.javarush.task.task05.task0510;
/*
Кошкоинициация
*/
public class Cat {
String name = null;
int age = 0;
int weight = 0;
String address = null;
String color = null;
public void initialize(String name){
this.name = name;
this.age = 8;
this.weight = 10;
this.color = "black";
}
public void initialize(String name, int weight, int age){
this.name = name;
this.age = age;
this.weight = weight;
this.color = "red";
}
public void initialize(String name, int age){
this.name = name;
this.age = age;
this.weight = 5;
this.color = "blue";
}
public void initialize(int weight, String color){
this.age = 4;
this.weight = weight;
this.color = color;
}
public void initialize(int weight, String address, String color){
this.age = 5;
this.weight = weight;
this.address = address;
this.color = color;
}
public static void main(String[] args) {
}
}