1

我正在尝试从一些 std::function 获取普通函数指针。该任务已在 SO(如此处)讨论过多次,并被承认无法解决。但是我尝试了这样的解决方案(为了简单起见,我修复了函数指针签名并退化了普通函数指针的使用):

#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

我的问题是:有人可以向我解释发生此链接错误的确切原因吗?

4

1 回答 1

1

静态成员变量仅在结构/类中声明。它们也需要被定义,你不需要这样做。

添加例如

template<int idx, typename F>
F wrap_f_struct<idx, F>::impl;
于 2013-10-13T17:43:23.613 回答