试图从std :: function获取普通函数指针

时间:2013-10-13 17:34:40

标签: c++ c++11 linker function-pointers

我正在尝试从某个std :: function获取普通函数指针。这项任务已经在SO(like here)进行了多次讨论,并被承认无法解决。但我尝试了这样的解决方案(为了简单起见,我修复了函数指针signture并简化了普通函数指针的用法):

#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

我的问题是:有人能解释一下这种联系错误发生的确切原因吗?

1 个答案:

答案 0 :(得分:1)

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

添加例如

template<int idx, typename F>
F wrap_f_struct<idx, F>::impl;