在将unordered_map类型成员添加到MyClass时,发生编译错误C2440

而operator ==和hash_value()已经定义。

#include <unordered_map>
namespace MyNameSpace {
    class MyClass {
    public:
        struct SomeArg { int x; int y; };
        typedef void (MyClass::*FUNC)(MyClass*, MyClass::SomeArg);
        struct SomeTuple { MyClass::FUNC a; int b; int c; };
        void func(MyClass* myc, MyClass::SomeArg);
    private:
        // xfunctional(768): error C2440 'type cast' cannot convert 'SomeTuple' to 'size_t'
        std::unordered_map<SomeTuple, int> someMap;
    }; // end of MyClass
    bool operator ==(const SomeTuple& a, const SomeTuple& b);
    std::size_t hash_value(const MyClass::SomeTuple& t);
}
namespace std { // already tried moving here
    //bool operator ==(const SomeTuple& a, const SomeTuple& b) {
    //    return (a.a==b.a && a.b==b.b && a.c==b.c);
    //}
    //size_t hash_value(const MyNameSpace::MyClass::SomeTuple& t) {
    //    size_t seed=0; boost::hash_combine(seed, t.x); boost::hash_combine(seed, t.y);
    //}
}


我想念什么?

最佳答案

不是boost。您应将std::hash专用于您的类型,或将谓词赋予map

template <class Key,
class T,
class Hash = hash<Key>,
class Pred = std::equal_to<Key>,
class Alloc = std::allocator<std::pair<const Key, T> > >
class unordered_map;


如果您的SomeTuple不在类中,则在其中创建unordered_map(其中KeySomeTuple)的类中-很简单,但在其他情况下-在我看来这是不可能的。

#include <unordered_map>

namespace MyNameSpace {
    struct SomeTuple { int a; int b; int c; };
}

namespace std {
template<>
struct hash<MyNameSpace::SomeTuple>
{
   size_t operator ()();
};
}

namespace MyNameSpace {
    class MyClass {
    public:
        struct SomeArg { int x; int y; };
        void func(MyClass* myc, MyClass::SomeArg);
    private:
        // xfunctional(768): error C2440 'type cast' cannot convert 'SomeTuple' to 'size_t'
        std::unordered_map<SomeTuple, int> someMap;
    }; // end of MyClass
    bool operator ==(const SomeTuple& a, const SomeTuple& b);
}

关于c++ - 在unordered_map中,当定义了operator ==和hash_value时,C2440'type cast':无法转换...,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/12707499/

10-12 14:56