如何声明extern“C”函数指针

时间:2009-08-17 17:04:02

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

所以我有这段代码:

#include "boost_bind.h"
#include <math.h>
#include <vector>
#include <algorithm>

double foo(double num, double (*func)(double)) {
  return 65.4;
}

int main(int argc, char** argv) {
  std::vector<double> vec;
  vec.push_back(5.0);
  vec.push_back(6.0);
  std::transform(vec.begin(), vec.end(), vec.begin(), boost::bind(foo, _1, log));
}

并收到此错误:

        return unwrapper<F>::unwrap(f, 0)(a[base_type::a1_], a[base_type::a2_]);
.............................................................^
%CXX-E-INCOMPATIBLEPRM, argument of type "double (* __ptr64 )(double) C" is
          incompatible with parameter of type "double (* __ptr64 )(double)"
          detected during:
            instantiation of ...5 pages of boost

所以这个错误是因为'log'在math.h中是extern“C”'d

我想知道如何在foo()中声明我的函数指针参数,以便它处理extern“C”函数。

2 个答案:

答案 0 :(得分:18)

您可以尝试改为使用cmath,并使用static_cast<double(*)(double)>(std::log)(必须播放以解决double重载。)

否则,您将功能限制为extern C个功能。这可以像

一样工作
extern "C" typedef double (*ExtCFuncPtr)(double);

double foo(double num, ExtCFuncPtr func) {
  return 65.4;
}

另一种方法是使foo成为一个仿函数

struct foo {
  typedef double result_type;
  template<typename FuncPtr>
  double operator()(double num, FuncPtr f) const {
    return 65.4;
  }
};

然后你可以将foo()传递给boost::bind,因为它是模板化的,它会接受任何链接。它也可以用于函数对象,而不仅仅是函数指针。

答案 1 :(得分:4)

尝试使用typedef:

extern "C" {
  typedef double (*CDoubleFunc)(double);
}

double foo(double num, CDoubleFunc func) {
  return 65.4;
}