刚刚回到用 C++ 编程。我得到的错误:
发送的成员开始请求是非类类型 char[30]
发送的成员端请求是非类类型 char[30]
char sent[] = "need to break this shiat down";
for(vector<string>::iterator it=sent.begin(); it!=sent.end(); ++it){
if(*it == " ")
cout << "\n";
else
cout << *it << endl;
}
我应该将字符更改为字符串还是以不同的方式定义向量?