子類繼承父類成員函數定義怎么寫?
比如父類的成員函數
parent(int height)
子類繼承父類身高的話
child(int height,int weight):parent(pheight)
{
this.height=pheight;
this.weight=iweight;//iweight是子類自己定義的變量
}
子類有身高和體重
子類繼承父類成員函數定義怎么寫?
比如父類的成員函數
parent(int height)
子類繼承父類身高的話
child(int height,int weight):parent(pheight)
{
this.height=pheight;
this.weight=iweight;//iweight是子類自己定義的變量
}
子類有身高和體重