摘要:
一般来说,写C++程序时推荐“类的声明和实现分离”,也就是说一个类的声明放在example.h文件中,而这个类的实现放在example.cpp文件中,这样方便管理,条理清晰。 但是如果类的声明用到了模板template,则类的声明与实现分离是不可取的,因为这个GCC会报错,比如undefined r 阅读全文
摘要:
1、代码 #include <iostream> using namespace std; class Company { public: string name; virtual void Management()=0; }; class Company1:public Company { pub 阅读全文