Π ΡΠ³Π°Π΅ΡΡΡ Π½Π° "this.weight = 8;" Π² ΡΡΡΠΎΠΊΠ΅ 17. ΠΠΎΠΆΠ°Π»ΡΠΉΡΡΠ°, ΠΎΠ±ΡΡΡΠ½ΠΈΡΠ΅, ΡΡΠΎ Π½Π΅ ΡΠ°ΠΊ?
package com.javarush.task.task05.task0510;
/*
ΠΠΎΡΠΊΠΎΠΈΠ½ΠΈΡΠΈΠ°ΡΠΈΡ
*/
public class Cat {
String name;
int age;
int weigth;
String address;
String color;
public void initialize(String name) {
this.name = name;
this.age = 2;
this.weight = 8;
this.color = "red";
this.address = null;
}
public void initialize(String name, int age, int weight) {
this.name = name;
this.age = age;
this.weight = weight;
this.address = null;
this.color = "color";
}
public void initialize(String name, int age) {
this.name = name;
this.age = age;
this.weight = 1;
this.color = "blue";
this.address = null;
}
public void initialize(int weight, String color) {
this.name = null;
this.address = null;
this.weight = weight;
this.color = color;
this.age = 5;
}
public void initialize(int weigth, String color, String address) {
this.name = null;
this.weigth = weigth;
this.color = color;
this.address = address;
this.age = 12;
}//Π½Π°ΠΏΠΈΡΠΈΡΠ΅ ΡΡΡ Π²Π°Ρ ΠΊΠΎΠ΄
public static void main(String[] args) {
}
}