2010-02-25 91 views
0

有人可以指出我,請問,在下面的代碼片段中設置函數的set :: insert和set :: count有什麼區別?boost :: bind&std :: set :: count編譯錯誤

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)); 

給出:

​​

回答

1

我不知道你想做什麼,但下面的工作對我來說沒有強制轉換:

int main() 
{ 
    std::vector<std::string> vector; 
    std::set<std::string> set; 

    std::for_each(vector.begin(), s_vector.end(), 
        boost::bind(&std::set<std::string>::insert, &set, _1)); 
    std::for_each(vector.begin(), s_vector.end(), 
        boost::bind(&std::set<std::string>::count, set, _1)); 

    return 0; 
}