gpt4 book ai didi

c++ - 编译器与引用文献的差异

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

<分区>

我编译了下面的代码。

#include <iostream> 

int main(int argc, char* argv[]) {
int a = 2;
int $b = a;
b = 3;
std::cout << a << std::endl;
return 0;
}

当我在 Visual Studio 2012 中编译它时,它按预期输出 3。但是,当我在 g++ 3.4.4 中编译它时,我收到以下错误。

error: `b' undeclared (first use this function)

为什么以下代码可以在 Visual Studio 2012 中编译,但不能在 g++ 中编译?

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