public class Cat { String name = null; int weight; int age; String color; String address = null; public void initialize(String name) { this.name = name; this.weight = 15; this.age = 20; this.color = "Blue"; } public void initialize(String name, int weight, int age) { this.name = name; this.weight = weight; this.age = age; this.color = "Pink"; } public void initialize(String name, int age) { this.name = name; this.weight = 15; this.age = age; this.color = "Pink"; } public void initialize(int weight, String color) { this.name = "Mark"; this.weight = weight; this.age = 15; this.color = color; } public void initialize(int weight, String color, String address) { this.name = "Mark"; this.weight = weight; this.age = 15; this.color = color; this.address = address; } public static void main(String[] args) { } }