升压::绑定& std::set::count 编译错误

发布于 2024-08-23 02:39:40 字数 833 浏览 6 评论 0原文

请有人指出我,在下面的片段中创建 set::insert 和 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));

给出:

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

Could anybody point me, please, what the difference is between making functor of set::insert and set::count in the below fragment?

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

Gives:

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

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

夜巴黎 2024-08-30 02:39:40

我不知道你想做什么,但以下内容对我来说无需强制转换:

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

I don't know what you're trying to do but the following works for me without casts:

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;
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文