-1
什麼是正確的方式來做這樣的事情的構造函數?我只能在矩形中設置高度和寬度嗎?類的繼承和構造函數
class Rectangle {
public:
Rectangle(int height, int width);
int height, int width;
};
class Square : Rectangle {
Square(int height, int width);
}
看看http://stackoverflow.com/questions/120876/c-superclass-constructor-calling-rules。 – Aiias