我正在使用谷歌稀疏哈希图库。我有以下类模板:
template <class Key, class T,
class HashFcn = std::tr1::hash<Key>,
class EqualKey = std::equal_to<Key>,
class Alloc = libc_allocator_with_realloc<std::pair<const Key, T> > >
class dense_hash_map {
.....
typedef dense_hashtable<std::pair<const Key, T>, Key, HashFcn, SelectKey,
SetKey, EqualKey, Alloc> ht;
.....
};
现在我将自己的类定义为:
class my_hashmap_key_class {
private:
unsigned char *pData;
int data_length;
public:
// Constructors,Destructor,Getters & Setters
//equal comparison operator for this class
bool operator()(const hashmap_key_class &rObj1, const hashmap_key_class &rObj2) const;
//hashing operator for this class
size_t operator()(const hashmap_key_class &rObj) const;
};
现在我想在 main 函数中将其作为参数传递为my_hashmap_key_class
a Key
, my_hashmap_key_class::operator()(const hashmap_key_class &rObj1, const hashmap_key_class &rObj2)
asEqualKey
和my_hashmap_key_class::operator()(const hashmap_key_class &rObj)
as类作为参数:HashFcn
dense_hash_map
主.cpp:
dense_hash_map<hashmap_key_class, int, ???????,???????> hmap;
将类成员函数作为模板参数传递的正确方法是什么?
我试着像这样传递:
dense_hash_map<hashmap_key_class, int, hashmap_key_class::operator(const hashmap_key_class &rObj1, const hashmap_key_class &rObj2),hashmap_key_class::operator()(const hashmap_key_class &rObj)> hmap;
但是由于未检测到运算符,因此出现编译错误。请帮助我意识到我在哪里做错了。