boost :: bind的问题

时间:2010-07-13 20:23:17

标签: boost boost-bind

以下代码在我想要创建Test::fun2的仿函数对象的行中引发错误:

#include <boost/shared_ptr.hpp>
#include <boost/bind.hpp>
#include <boost/function.hpp>

using namespace boost;

class Test
{

public:
 float fun1() { return 0.0f; }
 void fun2( float x ) {}

};

int main( int argc, char* argv[] )
{

 shared_ptr<Test> p = shared_ptr<Test>( new Test );

 function<float(void)> f1 = bind( &Test::fun1, p );
 function<void(float)> f2 = bind( &Test::fun2, p );

 return 1;

}

编译器给出了一组模板错误和

`void (Test::*)(float)' is not a class, struct, or union type

这似乎是主要的错误。不过我不知道这里有什么问题以及如何解决它。

1 个答案:

答案 0 :(得分:2)

问题解决了:我使用了错误的语法。

function f2 = bind(&amp; Test :: fun2,p,_1);

作品。