我试图从一些std::function获得普通的函数指针。该任务已在SO(like here)上进行了多次讨论,并且被认为无法解决。但是我尝试了这样的解决方案(为简单起见,我修复了函数指针签名,并简化了普通函数指针的用法):
#include <functional>
typedef int(*fp)(int);
template<int idx, typename F>
struct wrap_f_struct {
static F impl;
static int f(int a) { return impl(a); }
};
template<int idx, typename F>
fp wrap_f(F f) {
wrap_f_struct<idx, F>::impl = f;
return wrap_f_struct<idx, F>::f;
}
int add(int a, int b) { return a + b; }
int main() {
using namespace std::placeholders;
std::function<int(int)> add2 = std::bind(add, _1, 2);
(wrap_f<1>(add2))(1);
}
好吧,由于某些我无法理解的原因,这没有链接:
/tmp/ccrcFz32.o: In function `int (*wrap_f<1, std::function<int (int)> >(std::function<int (int)>))(int)':
cast_fp_min.cpp:(.text._Z6wrap_fILi1ESt8functionIFiiEEEPS1_T0_[_Z6wrap_fILi1ESt8functionIFiiEEEPS1_T0_]+0x10): undefined reference to `wrap_f_struct<1, std::function<int (int)> >::impl'
/tmp/ccrcFz32.o: In function `wrap_f_struct<1, std::function<int (int)> >::f(int)':
cast_fp_min.cpp:(.text._ZN13wrap_f_structILi1ESt8functionIFiiEEE1fEi[_ZN13wrap_f_structILi1ESt8functionIFiiEEE1fEi]+0x10): undefined reference to `wrap_f_struct<1, std::function<int (int)> >::impl'
collect2: error: ld returned 1 exit status
我的问题是:有人可以向我解释此链接错误发生的确切原因吗?
最佳答案
静态成员变量仅在结构/类中声明。还需要定义它们,而您不必这样做。
添加例如
template<int idx, typename F>
F wrap_f_struct<idx, F>::impl;
关于c++ - 试图从std::function获取普通函数指针,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/19348178/