C++ 多態問題詳解

C++ 多態問題詳解   一、多態問題的產生   class parent { public: parent(int a=0) { this->a =a; } void print() {  cout << "父類a:" << a<<endl; } protected: private: int a; };   class child :public parent { public: child(
相關文章
相關標籤/搜索