gpt4 book ai didi

c++ - 6031 : return value ignored (getchar()) In visual studio 2019

转载 作者:搜寻专家 更新时间:2023-10-31 00:25:37 25 4
gpt4 key购买 nike

它不会影响我的代码,但在我更新我的 visual studio 之前我从未见过这样的问题。我不知道这是否相关,但我很困惑为什么会出现问题。

#include <iostream>
#include <string>
#include <array>

using namespace std;

int main() {

const int SIZE = 3;

array<string, SIZE> names = { "S","A","W" };
array<string, SIZE>::iterator it;

cout << "names: \n";
for (it = names.begin(); it != names.end(); it++)
cout << *it << endl;


getchar();
return 0;
}

最佳答案

当更新 visual studio 时,他们向 getchar 添加了一个 [[nodiscard]] 属性。这告诉编译器在函数的返回值被忽略时警告用户。您可以在这里找到更多信息:https://en.cppreference.com/w/cpp/language/attributes/nodiscard

在这种情况下,因为您使用 getchar 只是为了防止窗口关闭,所以您不需要返回值,因此您可以忽略此警告。

我们可以通过显式忽略返回值来消除警告:

(void)getchar(); //Explicitly ignore return value

关于c++ - 6031 : return value ignored (getchar()) In visual studio 2019,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55583364/

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