gpt4 book ai didi

c++ - C++中变量的作用域和优先级

转载 作者:行者123 更新时间:2023-12-01 12:36:12 24 4
gpt4 key购买 nike

任何人都可以向我解释为什么结果是 2,x 正在使用哪个以及为什么。

auto x = 0;

int f(int i){
auto x = 1;
{
static auto x = 0;
x += i;
}
return x;
}
int main() {
cout << f(1) + f(2) <<endl;// result 2
return 0;
}

最佳答案

内部x遮蔽外面的,但变化只适用于最里面的范围

int f(int i){
auto x = 1; // consider this "x1"
{
static auto x = 0; // this is "x2"
x += i; // mutates "x2" but not "x1"
}
return x; // return "x1" which is still 1
}

所以
f(1) + f(2)                  // 1 + 1 == 2

关于c++ - C++中变量的作用域和优先级,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61729816/

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