gpt4 book ai didi

c++ - 如何使用 boost::bind 将成员函数绑定(bind)到任何对象

转载 作者:行者123 更新时间:2023-11-30 01:46:04 28 4
gpt4 key购买 nike

我正在尝试使用 boost::bind boost::function 实现某些功能,但无法使其工作。

我看到 how to bind a member function带有一些参数的对象,稍后用作 void/void 函数。但是如何将它绑定(bind)到任何对象。

我想要一个指向我的类的成员函数的指针(它可以与类的任何对象一起使用)并带有绑定(bind)参数:

#include "boost/function.hpp" 
#include "boost/bind.hpp"

class A
{
public:
A() {}

void func1( int i );
void func2( const std::string& s );

static void dispatch( std::vector<A>& vect, /* boost::function parameter "func" */ ) // what parameter should I set?
{
for ( std::vector<A>::iterator iter = vect.begin();
iter != vect.end();
++iter )
{
// what syntax should I use?
//(*iter).(*func)();
}
}
};

int main()
{
std::vector<A> vect;

// have func1(3) be called for all objects contained in vect
// this does not compile because boost expects an object to bind the function to
A::dispatch( vect, boost::bind( boost::mem_fn(&A::func1), 3 ) );
// have func2("hello") be called for all objects contained in vect
// this does not compile because boost expects an object to bind the function to
A::dispatch( vect, boost::bind( boost::mem_fn(&A::func2), "hello" ) );
}

我试过了:

static void dispatch( const std::vector<A>& vect, boost::_mfi::mf0<void, A> func )
...
boost::_mfi::mf1<void,A,int> func( boost::mem_fn(&A::func1) );
boost::_mfi::mf0<void,A> binded( boost::bind( func, 3 ) );
A::dispatch( vect, binded );

但是编译失败:

Erreur  1   error C2664: 'boost::_mfi::mf0<R,T>::mf0(void (__thiscall A::* )(void))' : impossible de convertir le paramètre 1 de 'boost::_bi::bind_t<R,F,L>' en 'void (__thiscall A::* )(void)' b:\dev\vobs_bci\public\lib\btle\src\btle\notifierdispatcher.cpp 99

注意:不幸的是我还没有使用 C++11,所以请不要使用 auto...;-)

最佳答案

许多细微的调整,大部分的简化:

Live On Coliru (c++03)

#include "boost/function.hpp" 
#include "boost/bind.hpp"
#include <vector>
#include <iostream>

class A
{
public:
A() {}

void func1(int i) const { std::cout << __PRETTY_FUNCTION__ << "(" << i << ")\n"; }
void func2(const std::string& s) const { std::cout << __PRETTY_FUNCTION__ << "(" << s << ")\n"; }

static void dispatch(const std::vector<A>& vect, boost::function<void(A const&)> const& func)
{
for ( std::vector<A>::const_iterator iter = vect.begin();
iter != vect.end();
++iter )
{
func(*iter);
}
}
};

int main()
{
std::vector<A> vect(3);

A::dispatch(vect, boost::bind(&A::func1, _1, 3));
A::dispatch(vect, boost::bind(&A::func2, _1, "hello"));
}

注释

  • 使用boost::function<void(A const&)>因为你取消引用 const 迭代器
  • 使用A::dispatch(vect, boost::bind(&A::func1, _1, 3));
  • 标记 func1func2常量

    void func1(int i) const;
    void func2(std::string const& i) const;

输出:

void a::func1(int) const(3)
void a::func1(int) const(3)
void a::func1(int) const(3)
void a::func2(const std::string &) const(hello)
void a::func2(const std::string &) const(hello)
void a::func2(const std::string &) const(hello)

关于c++ - 如何使用 boost::bind 将成员函数绑定(bind)到任何对象,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33666428/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com