关于c++里vector的问题 c++
论文问答
1
using namespace std;
using std::vector;
int main()
{
vector words;
string input;
while (getline(cin,input)){
words.push_back(input);
for (decltype(words.size()) n = 0; n != words.size(); n++){
auto temp = words[n];
if (isalpha(words[n]))
}
}
system("pause");
}
程序没写完,words[n]下面有红线,说string类型不能转换为int,我想问这个words[n]到底是什么类型啊,鼠标放在auto temp显示的类型是char,为什么下面的words[n]变成string了 而且把auto temp和if这两行去掉换成直接输出cout<<words[n]; 以后虽然没有语法错误但是无法运行呢 跪求大神解答~~!
-
你的代码有些问题: 第一:getline()没有停止的条件,反正我在linux下尝试你的代码,必须CTRL+D才能停止! 第二:你使用isalpha()函数,却给了个string类作为参数,它需要的是char啦!
#include <vector> using namespace std; int main(void) { vector<string> words; string input; while(getline(cin,input)){ if(!strcmp(input.c_str(),"END")) break; words.push_back(input); } //for(decltype(words.size())n=0;n!=words.size();++n){ for(int n=0;n!=words.size();++n){ string temp=words[n]; //if(is string type)---->>assume what you want ... if(isalpha('A')){//The argument is char Type No string cout<<"I Got alpha"<<endl; break; } } //system("pause");//use for win OS return 0; }
你可以加深自己对string类的理解!
-
先说第一个问题,你的vector words中存放的是std::string类型的数据。所以word[n]的类型是std::string,isalpha函数需要的是char,编译器也可以把char当成int,这个不是什么错误。你的程序如果想判断文件中的一行是不是英文的话,应该每个字符都判断,而不是判断整行。如果你保证每行都只有一个字符的话,可以取std::string的第一个字符传给isalpha. 第二个问题能具体点吗?运行起来没输出吗?
发表回复