boost :: bind и вставка boost :: unordered_map - PullRequest
0 голосов
/ 08 марта 2012

Я хочу использовать boost::bind для создания boost::function, вставляющего новую пару ключ-значение в boost::unoredered_map, но я получил несколько ошибок компиляции.

typedef boost::unordered_map< 
        std::string, std::string > dict_type;


inline void insert( const std::string& key, const std::string& value ){

    typedef std::pair<dict_type::iterator, bool> out_type;

    dict_type::value_type to_insert(key,value);

    boost::function<void()> f = boost::bind<out_type>( 
        &dict_type::insert
        ,obj_
        ,boost::cref(to_insert)
    );
}

Приведенная ниже ошибка выглядит так: bind не может найти правильную перегрузку для unordered_map::insert.В этом случае я точно указываю правильную перегрузку, но на этот раз она не работает.Вы знаете, что это такое?

 ../include2/llve_clorder_id.h:32: error: no matching function for call to 
'bind(<unresolved overloaded function type>,
 boost::unordered_map<std::basic_string<char, std::char_traits<char>, 
 std::allocator<char> >, std::basic_string<char, std::char_traits<char>, 
 std::allocator<char> >, boost::hash<std::basic_string<char, std::char_traits<char>,   
 std::allocator<char> > >, std::equal_to<std::basic_string<char, std::char_traits<char>, 
 std::allocator<char> > >, std::allocator<std::pair<const std::basic_string<char, 
 std::char_traits<char>, std::allocator<char> >, std::basic_string<char, 
 std::char_traits<char>, std::allocator<char> > > > >&, const 
 boost::reference_wrapper<const std::pair<const std::basic_string<char, 
 std::char_traits<char>, std::allocator<char> >, std::basic_string<char, 
 std::char_traits<char>, std::allocator<char> > > >)'

Ответы [ 2 ]

1 голос
/ 08 марта 2012

Проблема в том, что boost::unordered_map содержит более одного insert, поэтому &dict_type::insert неоднозначно.Самое простое решение - определить функцию для вызова правильной перегрузки:

void insert(dict_type & dict, dict_type::value_type const & value) {
    dict.insert(value);
}

boost::function<void()> f = boost::bind( 
    insert
    ,boost::ref(obj_)
    ,boost::cref(to_insert)
);

или вы можете явно указать перегрузку:

boost::function<void()> f = boost::bind( 
    static_cast<out_type (dict_type::*)(dict_type::value_type const &)>(&dict_type::insert)
    ,obj_
    ,boost::cref(to_insert)
);

В C ++ 11 вы можете избежатьпроблема с лямбдой:

std::function<void()> f = [&](){obj_.insert(to_insert);};
1 голос
/ 08 марта 2012

http://www.boost.org/doc/libs/1_49_0/libs/bind/bind.html#Troubleshooting предполагает, что иногда вы можете обойти проблемы с перегруженными функциями, приведя указатель к члену-функции к нужному типу. Используя временную переменную, чтобы она стала полностью нечитаемой, она будет выглядеть так:

typedef std::pair<typename dict_type::iterator, bool> out_type;

typename dict_type::value_type to_insert(key,value);

out_type (dict_type::*ins) (typename dict_type::value_type const&) const = &dict_type::insert;

boost::function<void()> f = boost::bind(
    ins
    ,obj_
    ,boost::cref(to_insert)
);
...