未解析的外部符号如何解决?抽象类
作者:Philipp Peter 提问时间:8/23/2021
这是我的抽象类 Storestate.h: #ifndef STORESTATE_H_ #define STORESTATE_H_ class Store; class StoreState { ...
继承多 问答列表
作者:Philipp Peter 提问时间:8/23/2021
这是我的抽象类 Storestate.h: #ifndef STORESTATE_H_ #define STORESTATE_H_ class Store; class StoreState { ...
作者:yingma 提问时间:8/17/2023
#include <iostream> using namespace std; class parent { public: virtual void f() { cout << "pare...