gpt4 book ai didi

c++ - 我应该在实现文件中使用未命名的 namespace 吗?

转载 作者:塔克拉玛干 更新时间:2023-11-02 23:04:23 25 4
gpt4 key购买 nike

我在一个外部*.cpp文件中定义了一些函数(这里不涉及类),当然还有一个合适的*.h文件。

*.cpp 文件中的某些函数在该 *.cpp 文件中无处使用。 *.h 文件中甚至没有提及它们。

我应该将这些函数放入一个未命名的命名空间中,还是它们可以紧挨着其他函数存在?如果是这样,为什么我需要为它们使用一个未命名的命名空间?我看不出有什么问题,因为无论如何都无法从外部访问这些功能。

最佳答案

如果您希望它们对那个编译单元真正私有(private),请将它们放在一个匿名命名空间中。如果您不这样做,那么其他人可以在别处声明这些函数并显式使用它们。

举个例子:

// library.cpp

// a "private" function here, in that it is not declared anywhere
void f() {}

namespace
{
// same as above, except within an anonymous namespace
void g() {}
}

// client.cpp

void f();

int main()
{
// Can call f(), it's been declared and is now effectively "public"
f();

// compilation error, this has no idea what g() is, it's not declared
// in any scope that can be resolved here
g();

return 0;
}

关于c++ - 我应该在实现文件中使用未命名的 namespace 吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9164476/

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