作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
在 SGI STL 实现中 <stl_hashtable.h>
hashtable
类(class)有一个像这样的 Actor :
template <class Value, class Key, class HashFcn,
class ExtractKey, class EqualKey,
class Alloc>
class hashtable {
public:
typedef Key key_type;
typedef Value value_type;
typedef HashFcn hasher;
typedef EqualKey key_equal;
//other type definitions
hasher hash_funct() const { return hash; }
key_equal key_eq() const { return equals; }
private:
hasher hash;//hash function which might be a functor
key_equal equals;//compare functor that returns two key is equal or not
ExtractKey get_key;//functor used when we extract a key from value, see bkt_num
public:
//There is no default ctor
hashtable(size_type n, //------------(1)
const HashFcn& hf,
const EqualKey& eql,
const ExtractKey& ext)
: hash(hf), equals(eql), get_key(ext), num_elements(0)
{
initialize_buckets(n);
}
hashtable(size_type n, //------------(2)
const HashFcn& hf,
const EqualKey& eql)
: hash(hf), equals(eql), get_key(ExtractKey()), num_elements(0)
{
initialize_buckets(n);
}
//...
}
我一直在徘徊,因为我们已经声明了 ExtractKey
, HashFcn
和 EqualKey
作为模板参数,为什么他们需要 (1) 中定义的构造函数?除了size_type n
之外,参数不是都是不必要的吗? ?我们可以使用 HashFcn()
ExtractKey()
等等。就像它在 (2) 中所做的那样,但不是所有三个。
那么这样做还有其他进一步的考虑吗?
最佳答案
只有类型由模板参数指定。需要构造函数 (1) 来提供指定用于哈希表的类型的实例。实例本身可以是具有自己的数据成员的类,并且是使用非平凡的构造创建的。
该类的实现者选择不提供默认构造函数。这允许用户实现不可默认构造的散列和相等比较操作,也就是说,类可以具有非平凡状态,对于这些状态没有默认构造函数将使用的良好默认值。
您已经注意到构造函数 (2) 使用 ExtractKey 的默认构造,但仍然允许哈希和相等比较器是非默认可构造的。
关于c++ - <STL_hashtable> 中是否不需要构造函数参数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17151594/
在 SGI STL 实现中 hashtable类(class)有一个像这样的 Actor : template class hashtable { public: typedef Key ke
我是一名优秀的程序员,十分优秀!