我正在尝试使用std :: set和类进行组合,如下所示:
#include <set>
class cmdline
{
public:
cmdline();
~cmdline();
private:
set<int> flags; // this is line 14
};
Run Code Online (Sandbox Code Playgroud)
但是,它不喜欢设置标志; 部分:
cmdline.hpp:14: error: ISO C++ forbids declaration of 'set' with no type
cmdline.hpp:14: error: expected ';' before '<' token
make: *** [cmdline.o] Error 1
Run Code Online (Sandbox Code Playgroud)
据我所知,我给了一个类型(int).你是否以不同的方式编写"set variable"行,或者它是否不允许?