gpt4 book ai didi

c++ - 这个 cin.getline() 行为是什么?

转载 作者:行者123 更新时间:2023-11-28 02:56:21 24 4
gpt4 key购买 nike

我不是在寻找替代方案,只是想了解为什么 C++ 会这样做。

字符名称[25];

cin.getline(名字, 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;
}

最佳答案

does it have to do with a failbit flag?

确实,如果输入对于缓冲区来说太长,就会设置failbit。您可以检查一下:

if (!cin.getline(name, 25)) {
cout << "Too long!\n";
}

并且,如果您想继续,请使用 cin.clear() 清除它,并使用 cin.ignore(-1) 删除未读字符。

关于c++ - 这个 cin.getline() 行为是什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21884300/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com