【问题标题】:Trouble with using boost::bind & boost::function使用 boost::bind 和 boost::function 的问题
【发布时间】:2012-04-18 04:55:24
【问题描述】:

从这个问题开始

How to pass class member functions to a method in a 3rd party library?

快速回顾一下,我需要将函数指针传递给第 3 方库中名为 moveset 的类的构造函数,其定义为

template <class Space>
moveset<Space>::moveset(particle<Space> (*pfInit)(rng*),
          void (*pfNewMoves)(long, particle<Space> &,rng*),
          int (*pfNewMCMC)(long,particle<Space> &,rng*))

该库提供的示例是简单地为 pfInit 等定义全局函数,我们称它们为 f、g 和 h。然后从控制器类中调用 smc::moveset Moveset(f,g,h);

我已尝试使用 boost:bind 来实施该建议。不幸的是,我正在努力让它发挥作用。

class IK_PFWrapper
{
 public:

 IK_PFWrapper(Skeleton* skeleton, PFSettings* pfSettings) ;
 smc::particle<cv_state> fInitialise(smc::rng *pRng);

... 
} ;

在控制器类中

IK_PFWrapper testWrapper (skeleton_,pfSettings_);
boost::function<smc::particle<cv_state> (smc::rng *)>  f = boost::bind(&IK_PFWrapper::fInitialise, &testWrapper,_1) ; 

// the 2nd and 3rd argument will be eventually be defined in the same manner as the 1st
smc::moveset<cv_state> Moveset(f, NULL, NULL); 

由此产生的编译器错误是,

Algorithms\IK_PFController.cpp(88): error C2664: 'smc::moveset<Space>::moveset(smc::particle<Space> (__cdecl *)(smc::rng *),void (__cdecl *)(long,smc::particle<Space> &,smc::rng *),int (__cdecl *)(long,smc::particle<Space> &,smc::rng *))' : cannot convert parameter 1 from 'boost::function<Signature>' to 'smc::particle<Space> (__cdecl *)(smc::rng *)'
with
[
 Space=cv_state
]
and
[
 Signature=smc::particle<cv_state> (smc::rng *)
]
and
[
 Space=cv_state
]
No user-defined-conversion operator available that can perform this conversion, or the operator cannot be called

非常感谢任何帮助

【问题讨论】:

    标签: c++ class templates boost-bind boost-function


    【解决方案1】:

    demote boost::function to a plain function pointer.

    boost::function(使用boost::bind 创建的不会自动转换为普通的旧函数指针。

    我建议创建一个使用boost::function 的包装器接口,即您的示例(简化为一个参数)看起来像:

    template <class Space>
    moveset<Space>::moveset(boost::function<particle<Space> (rng*)> pfInit)
    {
        library_namespace::moveset<Space>(
            pfInit.target<particle<Space>(rng*)>()    // parameter 1
        );
    }
    

    创建包装器意味着您只需在一个地方处理原始函数指针。 希望对您有所帮助,并对代码 sn-p 中的任何和所有错误表示歉意!

    【讨论】:

    • 阅读你以前的question 我不确定上面是否真的解决了原来的问题。我提供了有关原始问题的更多详细信息。
    猜你喜欢
    • 1970-01-01
    • 2016-03-16
    • 1970-01-01
    • 1970-01-01
    • 2012-09-27
    • 2010-10-06
    • 2012-05-26
    • 1970-01-01
    • 1970-01-01
    相关资源
    最近更新 更多