我有下面的类,它继承自 Collection 类,其中定义了我需要稍后在下面的派生类中实现的虚函数。除了派生类的构造函数之外,我还没有在 .cpp 文件中包含成员函数的定义。但是,当我构建我的项目时,我收到以下错误消息
'{' token| 之前的预期类名
我已经尝试了所有我知道的尝试,并且需要帮助来理解我的代码中的错误以及如何修复它。
#ifndef VARIABLEARRAY_H
#define VARIABLEARRAY_H
#include "Collection.h"
using namespace std;
class VariableArray: public Collection{
int* list[];// dynamic array that is resized on demand
public:
VariableArray();
};
#endif
任何帮助将不胜感激。