boost::bind 的问题

发布于 2024-09-10 09:26:05 字数 687 浏览 8 评论 0原文

以下代码在我想要创建 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

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

The following code throws an error at the line where I want to create a functor object of 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;

}

The compiler gives me a set of template errors and

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

which seems to be the main error. Nevertheless I have no idea what's the problem here and how to solve it.

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

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

发布评论

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

评论(1

另类 2024-09-17 09:26:05

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

函数 f2 = 绑定( &Test::fun2, p, _1 );

作品。

Problem solved: I used the wrong syntax.

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

works.

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