class girlFriend
{
int Height;
int Weight;
String Appearance;
girlFriend(int height,int weight,String Appearance){
this.Height=height;
this.Weight=weight;
this.Appearance=Appearance;
}
fun(){ ... }
}
girlFriend gf = new girlFriend(175,100,“Anglebaby”)
|