重命名命名空间

发布于 2024-11-09 12:53:33 字数 656 浏览 0 评论 0原文

我已经从事 C++ 工作很长时间了,但今天早上我遇到了一个无法给出答案的问题:“是否可以在 C++ 中为命名空间创建别名?”

让我举个例子。假设我有以下标头:

namespace old
{
  class SomeClass {};
}

由于未指定的原因,它必须变成:

namespace _new
{
  namespace nested
  {
    class SomeClass {}; // SomeClass hasn't changed
  }
}

现在,如果我有一个引用 SomeClass 的旧代码库,我可以快速(并且肮脏地)“修复”更改添加:

namespace old
{
  typedef _new::nested::SomeClass SomeClass;
}

但是有没有一种方法可以将 所有内容_new::nested 导入到 old 中,而无需显式 typedef每种类型?

类似于 Python import * from ...

谢谢。

I've been doing C++ for a long time now but I just faced a question this morning to which I couldn't give an answer: "Is it possible to create aliases for namespaces in C++ ?"

Let me give an example. Let's say I had the following header:

namespace old
{
  class SomeClass {};
}

Which, for unspecified reasons had to become:

namespace _new
{
  namespace nested
  {
    class SomeClass {}; // SomeClass hasn't changed
  }
}

Now if I have an old code base which refers to SomeClass, I can quickly (and dirtily) "fix" the change by adding:

namespace old
{
  typedef _new::nested::SomeClass SomeClass;
}

But is there a way to import everything from _new::nested into old without having to typedef explicitely every type ?

Something similar to Python import * from ....

Thank you.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

无悔心 2024-11-16 12:53:33
using namespace new::nested;

Ideone 中的示例

或者,如果您确实想要一个真正的别名:

namespace on = one::nested;

Ideone 的示例

using namespace new::nested;

Example at Ideone.

Or if you actually want a real alias:

namespace on = one::nested;

Example at Ideone.

独行侠 2024-11-16 12:53:33

这:

namespace old = newns::nested;

似乎就是你想要的。

This:

namespace old = newns::nested;

would seem to be what you want.

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