🤣
package com.javarush.task.task05.task0517;
/*
Конструируем котиков
*/
public class Cat {
String name;
int age;
int weight;
String color;
String address;
public Cat (String name)
{
this.name = name;
this.age = age;
this.weight = weight;
this.color = color;
this.address = null;
}
public Cat (String name, int weight, int age)
{
this.name = name;
this.weight = weight;
this.age = age;
this.color = color;
this.address = null;
}
public Cat (int age, int weight, String name)
{
this.age = age;
this.weight = 0;
this.name = name;
this.color = color;
this.address = null;
}
public Cat (int weight, String color, String name, String address, int age)
{
this.weight = weight;
this.color = color;
this.name = null;
this.address = null;
this.age = age;
}
public Cat (int weight, String color, String address)
{
this.name = null;
this.weight = weight;
this.color = color;
this.address = address;
this.color = color;
}
public static void main(String[] args) {
}
}