gpt4 book ai didi

c++ - 错误 : ISO C forbids declaration of `test' with no type

转载 作者:行者123 更新时间:2023-11-30 04:19:35 24 4
gpt4 key购买 nike

我在自学C++,遇到了这个问题。写了几行简单的代码就是想测试“auto”,现在好像不行了。我在下面粘贴了我的代码:

#include <iostream>
using namespace std;
int main(int argc, char** argv) {
auto test=1;
return 0;
}

然后报标题中的错误。我使用 NetBeans IDE。任何意见,将不胜感激。

最佳答案

问题是您的编译器不支持 C++11 auto,或者已将其禁用(C++03 模式)。

所以 auto 关键字,而不是类型推断的意思,是一个存储修饰符。然后缺少类型。

关于c++ - 错误 : ISO C forbids declaration of `test' with no type,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15748973/

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