gpt4 book ai didi

c++ - 如何在 C++ 中为不同的模板类型使用不同的类定义? (类重载?)

转载 作者:太空狗 更新时间:2023-10-29 21:40:48 27 4
gpt4 key购买 nike

我想做的是做一个哈希表。为了提高效率,我希望它根据数据类型以不同方式工作。例如:int 的二次探测方法,string 的分离链接方法。

我发现我可以使用typeid()函数来比较模板的typename。我可以在类的定义中使用它,但我担心它会减慢程序速度。

我觉得“类重载”之类的东西可以解决这个问题。但我从未听说过“类重载”。你认为解决这个问题的正确方法是什么?

谢谢。

最佳答案

"But I've never heard of "Class Overloading". What is the right way to solve this problem do you think?"

您可能会使用模板类及其接口(interface)的特化(重载):

template<typename T>
class hash_table {
public:
bool probe(const T& x);
hash_table<T> chain(const T& x);
};

template<>
bool hash_table<int>::probe(const int& x) {
// int specific implementation
}
template<>
bool hash_table<std::string>::probe(const std::string& x) {
// std::string specific implementation
}
template<>
hash_table<int> hash_table<int>::chain(const int& x) {
// int specific implementation
}
template<>
hash_table<std::string> hash_table<std::string>::chain(const std::string& x) {
// std::string specific implementation
}

您还可以使用基类来提供接口(interface),并使用基于类型的选择器来继承更灵活的变体:

template<typename T>
class hash_table_base {
virtual bool probe(const T& x) = 0;
virtual hash_table_base<T> chain(const T& x) = 0;
void some_common_code() {
// ....
}
};

class hash_table_int
: public hash_table_base<int> {
virtual bool probe(const int& x) {
}
virtual hash_table_base<int> chain(const T& x) {
}
}

class hash_table_string
: public hash_table_base<std::string> {
virtual bool probe(const std::string& x) {
}
virtual hash_table_base<std::string> chain(const std::string& x) {
}
}

template <typename T>
struct SelectImpl {
typedef hash_table_base<T> BaseClass;
};

template<int> struct SelectImpl {
typedef hash_table_int BaseClass;
};

template<std::string> struct SelectImpl {
typedef hash_table_sting BaseClass;
};

template<typename T>
class hash_table
: public SelectImpl<T>::BaseClass {
};

至于后一个建议,您甚至可以将其扩展到 Policy based design模式。

关于c++ - 如何在 C++ 中为不同的模板类型使用不同的类定义? (类重载?),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30282229/

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