我不是在寻找替代方法,只是想了解C ++为什么会这样做。
char name [25];
cin.getline(name,25);
例如,如果我超过了getline的'25'输入限制,为什么它会这样做但是冲过程序,它不会停止任何cin.get(),它是否与failbit标志有关?
#include <iostream>
#include <cstring> // for the strlen() function
using namespace std;
int main()
{
char defName[25];
char name[25];
for (int x = 0; x < 25; x++)
{
if (x != 24)
defName[x] = 'x';
else
defName[x] = '\0';
}
cout << "Default Name: " << defName << endl << endl;
cout << "Please enter a name to feed into the placeholder (24 Char max): ";
cin.getline(name, 25);
name[24] = '\0';
cout << "You typed " << name << endl;
cin.get();
for (int i = 0; i < strlen(name); i++)
if (name[i] != ' ')
{
{
defName[i] = name[i];
}
}
cout << "Placeholder: " << defName;
cin.get();
return 0;
}
答案 0 :(得分:2)
是否与failbit标志有关?
实际上,如果输入对于缓冲区而言太长,则设置failbit
。你可以检查一下:
if (!cin.getline(name, 25)) {
cout << "Too long!\n";
}
并且,如果您想继续,请使用cin.clear()
清除它,并使用cin.ignore(-1)
删除未读字符。