0
Может ли кто-нибудь указать мне, пожалуйста, какая разница между созданием функтора set :: insert и set :: count в следующем фрагменте?boost :: bind & std :: set :: count compile error
typedef std::set<std::string> s_type;
typedef std::pair<s_type::iterator, bool>(s_type::*insert_fp)(const s_type::value_type&);
typedef s_type::size_type(s_type::*count_fp)(const s_type::value_type&);
std::vector<std::string> s_vector;
std::set<std::string> s_set;
std::for_each(s_vector.begin(), s_vector.end(), boost::bind(static_cast<insert_fp>(&s_type::insert), &s_set, _1));
std::for_each(s_vector.begin(), s_vector.end(), boost::bind(static_cast<count_fp>(&s_type::count), &s_set, _1));
Дает:
error C2440: 'static_cast' : cannot convert from 'overloaded-function' to 'count_fp'
None of the functions with this name in scope match the target type