仅在一个特定的类文件内使用命名空间

发布于 2024-11-28 03:29:41 字数 815 浏览 1 评论 0原文

这是一个相当简单的问题,或多或少考虑了语法语义。

我在命名空间中有一个类,它使用另一个命名空间中的许多类:

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

谁的新欢旧爱 2024-12-05 03:29:41

最简单的不完美但有帮助的解决方案是使用命名空间别名:

namespace SomeNamespace
{
   namespace ans = anothernamespace; // namespace alias
   class MyClass
   {
      //...

      //These types of namespace uses occur alot around here:
      void DoSomething(const ans::anotherclass &arg);
      //...
   }
}

您的类用户不会“使用命名空间 anothernamespace;”,使其更安全,但您仍然必须在类中使用别名。不确定它是否有帮助,这取决于您是否只想减少输入或隐藏某种类型。在这里,您将完整的命名空间放入一种子命名空间中,该子命名空间不会进入用户的命名空间,但仍然可用。

否则...没有办法完全按照你的意愿去做。在类声明中使用命名空间不起作用。

The simplest non-perfect-but-helping solution would be to use a namespace alias :

namespace SomeNamespace
{
   namespace ans = anothernamespace; // namespace alias
   class MyClass
   {
      //...

      //These types of namespace uses occur alot around here:
      void DoSomething(const ans::anotherclass &arg);
      //...
   }
}

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.

彼岸花似海 2024-12-05 03:29:41

这就是你想要的。 MyClass 可以访问这两个命名空间。不过,在标头中使用命名空间是不好的做法。

namespace SomeNamespace {
namespace other {
  using namespace anothernamespace;
  class MyClass {
  };
}}

namespace SomeNamepace {
  typedef other::MyClass MyClass;
}

您确实应该更喜欢在类声明中指定 anothernamespace:: 。

This does what you want. Both namespaces are accessible to MyClass. using namespace is bad practice in headers though.

namespace SomeNamespace {
namespace other {
  using namespace anothernamespace;
  class MyClass {
  };
}}

namespace SomeNamepace {
  typedef other::MyClass MyClass;
}

You really should prefer specifying anothernamespace:: in your class declaration.

海之角 2024-12-05 03:29:41

你不能。恐怕就这么简单。

You can't. It's just that simple, I'm afraid.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文