📅  最后修改于: 2022-03-11 14:44:47.540000             🧑  作者: Mango
class Bar {
public:
Bar(int weight, int height);
}
class Computer: public Bar {
public:
Computer(int weight, int height): Bar(weight, height) {};
};