gpt4 book ai didi

c++ - 如果全局中存在相同的变量,如何访问匿名命名空间变量

转载 作者:塔克拉玛干 更新时间:2023-11-03 00:10:02 26 4
gpt4 key购买 nike

让我们想象一下情况:

#include <iostream>

int d =34;

namespace
{
int d =45;
}

int main()
{
std::cout << ::d ;
return 0;
}

这里的输出是 34,因为 ::表示全局命名空间。但是如果我评论第 3 行,输出是 45,这很奇怪

如果我使用 std::cout << d ; - 我得到错误

s.cxx:12:15: error: reference to ‘d’ is ambiguous

在这种情况下如何访问 unnamed_namespace::d?

PS:我读过未命名的命名空间用于静态全局变量,也就是仅在文件范围内可见

最佳答案

如果没有其他东西的帮助,你无法在 main 中的两个 d 之间消除歧义。

消除两者歧义的一种方法是在命名空间中创建引用变量,然后在 main 中使用引用变量。

#include <iostream>

int d = 34;

namespace
{
int d = 45;
int& dref = d;
}

int main()
{
std::cout << dref << std::endl;
return 0;
}

但是,为什么要将自己与同一个变量混淆呢?如果可以,请在命名空间中使用不同的变量名称或为命名空间命名。

namespace
{
int dLocal = 45;
}

int main()
{
std::cout << dLocal << std::endl;
std::cout << d << std::endl;
return 0;
}

namespace main_detail
{
int d = 45;
}

int main()
{
std::cout << main_detail::d << std::endl;
std::cout << d << std::endl;
return 0;
}

关于c++ - 如果全局中存在相同的变量,如何访问匿名命名空间变量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34602334/

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