#include <iostream>
using namespace std;
#include <string>
// Sequence containers
#include <list>
#include <vector>
int main() {
string sve[MAX] = { "one","two", "three", "four", "five" };
//2
vector <string> vstr;
//3
for(int i=0;i<MAX;i++)
vstr.push_back(sve[i]);
//4
cout<<"---Vector---\n";
for each (string s in vstr)
cout<<s<<endl;
错误:for 之后的预期“(”。错误发生在 for 每一行
我不认为我缺少任何包含,这很奇怪。我在 xcode 4.3 上