本文介绍了C++ 中的多个命名空间声明的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
这样替换是否合法:
namespace foo {
namespace bar {
baz();
}
}
类似这样的:
namespace foo::bar {
baz();
}
?
推荐答案
您可以将命名空间合并为一个名称并使用新名称(即 Foobar).
You can combine namespaces into one name and use the new name (i.e. Foobar).
namespace Foo { namespace Bar {
void some_func() {
printf("Hello World.");
}
}}
namespace Foobar = Foo::Bar;
int main()
{
Foobar::some_func();
}
这篇关于C++ 中的多个命名空间声明的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!