C ++ - 绑定函数

时间:2010-10-14 09:35:02

标签: c++ pointers function boost boost-bind

我有一些(库API,所以我无法更改函数原型)函数,其编写方式如下:

void FreeContext(Context c);

现在,在我执行的某个时刻,我有Context* local_context;变量,这也是无法更改的主题。

我希望boost::bind使用FreeContext函数,但我需要从局部变量Context中检索Context*

如果我按照以下方式编写代码,编译器会说它是“非法间接”:

boost::bind(::FreeContext, *_1);

我设法通过以下方式解决了这个问题:

template <typename T> T retranslate_parameter(T* t) {
   return *t;
}

boost::bind(::FreeContext,
            boost::bind(retranslate_parameter<Context>, _1));

但这个解决方案对我来说似乎不太好。有关如何使用*_1之类的内容解决此问题的任何想法。 也许写一个小lambda函数?

3 个答案:

答案 0 :(得分:4)

您可以使用Boost.Lambda为*重载了_n运算符。

#include <boost/lambda/lambda.hpp>
#include <boost/lambda/bind.hpp>
#include <algorithm>
#include <cstdio>

typedef int Context;

void FreeContext(Context c) {
    printf("%d\n", c);
}

int main() {
    using boost::lambda::bind;
    using boost::lambda::_1;

    Context x = 5;
    Context y = 6;
    Context* p[] = {&x, &y};

    std::for_each(p, p+2, bind(FreeContext, *_1));

    return 0;
}

答案 1 :(得分:2)

使用Boost.Lambda或Boost.Phoenix在占位符上使用operator*

答案 2 :(得分:1)

您还可以将Context指针放在带有自定义删除工具的shared_ptr中:

#include <memory> // shared_ptr

typedef int Context;

void FreeContext(Context c)
{
   printf("%d\n", c);
}

int main()
{
   Context x = 5;
   Context* local_context = &x;

   std::shared_ptr<Context> context(local_context,
                                    [](Context* c) { FreeContext(*c); });
}

不确定这是否相关。祝你好运!