我需要初始化一个静态const向量类成员…
我努力了
我努力了
static const vector<string> vr ({"2","3","4"}); static const vector<string> vr = {"2","4"}; static const vector<string> vr {"2","4"};
他们不工作….
我使用eclipse与mingw(我已启用c 11)
解决方法
静态变量初始化是在类之外完成的,如下所示:
class Example { static const vector<string> vr; // ... }; const vector<string> Example :: vr ({"hello","world"});