Делаю все по заданию, но по какой-то причине последние две инициализации отмечены как неправильные. Может кто подсказать, что не так?
package com.javarush.task.task05.task0510;
/*
Кошкоинициация
*/
public class Cat {
//напишите тут ваш код
String name = "Urizen";
int weight = 6;
int age = 2;
String address = null;
String color = "black";
public void initialize(String name)
{
this.name = name;
this.weight = weight;
this.age = age;
this.color = color;
}
public void initialize(String name, int weight, int age)
{
this.name = name;
this.weight = weight;
this.age = age;
this.color = color;
}
public void initialize(String name, int age)
{
this.name = name;
this.weight = weight;
this.age = age;
this.color = color;
}
public void initialize(int weight, String color)
{
this.weight = weight;
this.age = age;
this.color = color;
}
public void initialize(int weight, String color, String address)
{
this.weight = weight;
this.age = age;
this.color = color;
this.address = address;
}
public static void main(String[] args) {
}
}