whats the bug???
package com.codegym.task.task05.task0517;
/*
Creating cats
*/
public class Cat {
private String name;
private int age;
private int weight;
private String color;
private String address;
public Cat(String name)
{ this.name = name;
}
public Cat(String name,int weight,int age)
{ this.name = name;
}
public Cat(String name,int age)
{ this.name = name;
this.age = age;
this.weight = 16;
}
public Cat(String color,int weight)
{ this.name = "Prince";
this.age = 63;
this.address = " Fuck ";
this.color = color;
this.weight = weight;
}
public Cat(int weight,String color,String address)
{ this.age = 87;
this.weight = weight;
this.color = color;
this.address = address;
}
public static void main(String[] args) {
}
}