gpt4 book ai didi

c++ - 有没有办法将类嵌入到同名的新命名空间中?

转载 作者:行者123 更新时间:2023-11-28 02:10:33 28 4
gpt4 key购买 nike

我们正试图将一个类隐藏在一个新的命名空间后面,但我们希望保留原来的名称。

namespace first {
class Logger { ... };
}

namespace second {
using Logger = first::Logger;
}

error: definition of type 'Logger' conflicts with type alias of the same name class Logger;

最佳答案

是的,我们可以:

namespace first {
class Logger { };
}

namespace second {
typedef first::Logger Logger;
}

typedef is apparently equivalent to using (在 C++11 中),更加实用。

关于c++ - 有没有办法将类嵌入到同名的新命名空间中?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35880793/

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