gpt4 book ai didi

c++ - 命名空间中的私有(private)类

转载 作者:塔克拉玛干 更新时间:2023-11-02 23:31:36 28 4
gpt4 key购买 nike

我在头文件的命名空间中有一个类。该类需要一个模板类型,而我只希望使用某些类型。下面显示了一个示例。

文件a.hpp

// a.hpp
namespace a_ns {
template<class T>
class a {
// stuff
};
typedef a<double> a_double;
} // end of namespace
// stuff

文件 b.hpp

// b.hpp
#include <a.hpp>
namespace b_ns {
typedef a_ns::a_double b;
}

文件main.cpp

// main.cpp
#include "b.hpp"
int main() {
b_ns::b my_b; // <<<--- I LIKE this!
a_ns::a<float> my_a_which_is_not_allowed; // <<<--- I DO NOT LIKE THIS THOUGH! D:
}

因此,正如您从相当冗长的示例中看到的那样,最终目标是不允许最终用户声明 class a。与 float作为类型名,并且只能使用具有特定类型的预定义类,如 typedef a<double> a_double; 声明的那样.

我认为上面的这个例子会允许这样做,但是我错了,因为我可以创建一个 a<float>如上所述,因为我包括 b.hpp ,这又包括 a.hpp !所以你看到问题了! (希望如此?)

如果可能的话,可能有一个简单的解决方案。

最佳答案

如果您只想使用类型别名而不是直接使用a,您可以将它放入一个用户应该知道不要使用的实现命名空间中:

namespace a_ns {

namespace detail {
template<class T>
class a {
// stuff
};
}

typedef detail::a<double> a_double;
} // end of namespace

现在任何东西都可以使用a_double,但是要直接使用a,您的detail 命名空间必须被挖掘,这是普遍接受的作为一件坏事。如果用户决定他们想要这样做,他们就已经放弃了避免麻烦,您不应该采取额外的措施来阻止他们伤害自己。

关于c++ - 命名空间中的私有(private)类,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18408971/

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