仅在一个特定的类文件内使用命名空间
这是一个相当简单的问题,或多或少考虑了语法语义。
我在命名空间中有一个类,它使用另一个命名空间中的许多类:
namespace SomeNamespace
{
class MyClass
{
//...
//These types of namespace uses occur alot around here:
void DoSomething(const anothernamespace::anotherclass &arg);
//...
}
}
这个类当然在它自己的 .hpp 文件中。
我想让命名空间“anothernamespace”内的所有内容都可用于 MyClass 类,但是,如果我简单地这样说:
namespace SomeNamespace
{
using namespace anothernamespace;
class MyClass
{
//...
//These types of namespace uses occur alot around here:
void DoSomething(const anothernamespace::anotherclass &arg);
//...
}
}
任何这样做的人
using namespace SomeNamespace;
也会自动使用 anothernamespace - 这是我想避免的。
我如何实现我想要的?
This is a rather simple question more or less considering syntax semantics.
I've got a class inside a namespace, which uses a lot of classes out of another namespace:
namespace SomeNamespace
{
class MyClass
{
//...
//These types of namespace uses occur alot around here:
void DoSomething(const anothernamespace::anotherclass &arg);
//...
}
}
This class is of course in its own .hpp file.
I would like to make everything inside the namespace "anothernamespace" available to the MyClass class, however, if I simply put it like this:
namespace SomeNamespace
{
using namespace anothernamespace;
class MyClass
{
//...
//These types of namespace uses occur alot around here:
void DoSomething(const anothernamespace::anotherclass &arg);
//...
}
}
Anyone who does
using namespace SomeNamespace;
Will automatically also use anothernamespace - which is what I want to avoid.
How do I achieve what I want?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
最简单的不完美但有帮助的解决方案是使用命名空间别名:
您的类用户不会“使用命名空间 anothernamespace;”,使其更安全,但您仍然必须在类中使用别名。不确定它是否有帮助,这取决于您是否只想减少输入或隐藏某种类型。在这里,您将完整的命名空间放入一种子命名空间中,该子命名空间不会进入用户的命名空间,但仍然可用。
否则...没有办法完全按照你的意愿去做。在类声明中使用命名空间不起作用。
The simplest non-perfect-but-helping solution would be to use a namespace alias :
Your class users will not "using namespace anothernamespace;", making it more safe, but you still have to use the alias in your class. Not sure it helps, it depends on if you just want to type less or maybe hide a type. Here you put the full namespace in a kind of sub-namespace that don't get into the user's namespaces, but is still available.
Otherwise... there is no way to do exactly what you want. Using namespace don't work inside class declarations.
这就是你想要的。 MyClass 可以访问这两个命名空间。不过,在标头中使用命名空间是不好的做法。
您确实应该更喜欢在类声明中指定 anothernamespace:: 。
This does what you want. Both namespaces are accessible to MyClass.
using namespace
is bad practice in headers though.You really should prefer specifying anothernamespace:: in your class declaration.
你不能。恐怕就这么简单。
You can't. It's just that simple, I'm afraid.