我正在尝试创建一个特定大小的矢量,为 255(最大)。它对我不起作用,就像我在互联网上的示例中看到的那样......
我正在使用 Microsoft Visual C++ 2012 ...
我有当前的代码:
#include <iostream>
#include <string>
#include <vector>
#include <stdlib.h>
using namespace std;
const int MAX = 255;
class test
{
vector <string> Name(MAX);
};
int main()
{
system("PAUSE");
}
它给了我2个错误:
Error 1 error C2061: syntax error : identifier 'MAX'
2 IntelliSense: variable "MAX" is not a type name
谢谢你的帮助!