class Parrot :public animal { public: Parrot(); Parrot(int _hp, string _name); ~Parrot(); void say() override; //自分の名前を自己紹介します。 };