0

我有以下类,称为 HashMap,它的一个构造函数可以接受用户提供HashFunction的——然后是我实现的那个。

我面临的问题是HashFunction在没有提供时定义我自己的问题。以下是我正在使用并从 gcc 获取错误的示例代码:

HashMap.cpp:20:20: error: reference to non-static member function must be called
    hashCompress = hashCompressFunction;
                   ^~~~~~~~~~~~~~~~~~~~`

头文件:

class HashMap
{
    public:
        typedef std::function<unsigned int(const std::string&)> HashFunction;
        HashMap();
        HashMap(HashFunction hashFunction);
        ...
    private:
        unsigned int hashCompressFunction(const std::string& s);
        HashFunction hashCompress;
}

源文件:

unsigned int HashMap::hashCompressFunction(const std::string& s) 
{
    ... my ultra cool hash ...

    return some_unsigned_int;
}

HashMap::HashMap()
{
    ...
    hashCompress = hashCompressFunction;
    ...
}

HashMap::HashMap(HashFunction hf)
{
    ...
    hashCompress = hf;
    ...
}
4

1 回答 1

1

hashCompressFunction是成员函数,与普通函数有很大不同。成员函数具有隐式this指针,并且始终需要在对象上调用。为了将其分配给std::function,您可以使用std::bind绑定当前实例:

hashCompress = std::bind(&HashMap::hashCompressFunction, 
                         this, std::placeholders::_1);

但是,您应该看到标准库是如何使用std::hash的。

于 2013-11-15T03:25:03.173 回答