class Factory{public: virtual ~Factory()=0; virtual Product* CreateProduct()=0;protected: Factory();private:};“~Factory()=0”中的“=0”代表什么意思