我正在NetBeans上编写示例代码,我意识到使用std :: foo不适用于NetBeans。它给出了"未解决的标识符错误"。这是下面的示例代码;
#include <cstdlib>
#include <iostream>
#include <vector> //Required whenever you use vectors
/*
*
*/
using std::vector;
using std::cout;
using std::endl;
int main(int argc, char** argv) {
vector<int> integers (4, 100); // Creates a vector [100 100 100 100]
cout << integers[0] << endl;
return 0;
}
代码构建并运行,但错误仍然在文本页面上可见。