MPL 映射实例化类型

MPL Map Instantiate Type

我有以下内容:

class Message
{
public:
    bool process()
    {
        return doProcess();
    }
protected:
    virtual bool doProcess() = 0;
};

class Hello : public Message
{
protected:
    bool doProcess()
    {
        return false;
    }
};
typedef typename boost::mpl::map< boost::mpl::pair< boost::mpl::int_< 0 >, Hello > > map;

struct Generator
{
    typedef void result_type;
    template< typename t_type >
    void operator()(std::vector< boost::shared_ptr< Message > >& processors,
                    t_type p_element)
    {
        typedef typename boost::mpl::at< map, t_type >::type c_instanceType
        boost::shared_ptr< Message > temp(reinterpret_cast< Message* >(new c_instanceType));
        p_processors[p_element] = temp;
    }
};

然后像这样调用:

class MessageProcessor
{
public:
    MessageProcessor() :
        m_processors(12)
    {
        // eventually there will be 12 different messages so I will add
        // them to the mpl map and adjust the range
        boost::mpl::for_each< boost::mpl::range_c< boost::uint8_t, 0, 1 > >
        (
            boost::bind(Generator(), boost::ref(m_processors), _1)
    }
private: 
    std::vector< boost::shared_ptr< Message > > m_processors;
};

此代码编译干净;但是,当稍后像这样调用该函数时:

m_processors[0]->process();

returns 处理的处理函数中的线路发生段错误。我在 gcc 4.8 中工作,boost 版本为 1.55。另请注意,这不是完整的代码。使用调试器时,我发现调用 doProcess 时 vptr 似乎为空,因此子 class 似乎不存在。关于如何解决此问题的任何想法?

所以问题似乎是在执行 at<> 时实际上并未找到该类型,并且返回了其他内容而不是 Hello 类型。看起来 boost::for_each 传入的类型是 boost::mpl::integral_c<boost::uint8_t, 0> 类型,它在 mpl 映射中不存在,因为我将 boost::mpl::int_<0> 存储为键。将映射中的键类型更改为 boost::mpl::integeral_c< boost::uint8_t, 0 > 不会出现段错误并按预期执行。