this.name = name;   
    this.age = age;
    this.weight = weight;
    this.color = color; 
    } 
    
    public void  initialize(String name, int  weight, int  age){
        
    this.name = name;   
    this.age = age;
    this.weight = weight;
    this.color = color;  
    
public void initialize(int weight, String color){ 
        
    this.age = age; 
    this.weight = weight; 
    this.color = color; 
    }    
    public void initialize(int weight, String color, String  address){ 
        
    this.address = address; 
    this.age = age; 
    this.weight = weight; 
    this.color = color;
    }
    }