C++继承和抽象 Animal(int height, int weight) {} Fish() : Animal(400, 300) {}
?
?构造函数这块因为都要调用,需要这样指定一下父类的构造是那一个