gpt4 book ai didi

c++ - 在 C++ 中声明一个全局作用域变量 const

转载 作者:太空宇宙 更新时间:2023-11-04 05:58:37 25 4
gpt4 key购买 nike

在 C 或 C++ 中,是否可以声明一个具有全局作用域的 const,但定义是在函数内部设置的?

最佳答案

做类似 ( live sample) 的事情怎么样

const int& MyConstValue(int x) {
static const int myConstValue = x;
return myConstValue;
}

int main() {
std::cout << MyConstValue(5) << std::endl; // This is the 1st call and "wins"
std::cout << MyConstValue(8) << std::endl;

return 0;
}

输出是

5
5

至少 这甚至可以保证是线程安全的。

关于c++ - 在 C++ 中声明一个全局作用域变量 const,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22748675/

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