gpt4 book ai didi

boost - boost::bind 的问题

转载 作者:行者123 更新时间:2023-12-04 06:50:12 26 4
gpt4 key购买 nike

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

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

最佳答案

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

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

作品。

关于boost - boost::bind 的问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3241199/

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