我正在尝试将类成员函数作为参数传递 当我使用下面的代码时,这项工作非常完美
#include <stdio.h>
class CMother;
typedef int(CMother::*FuncPtr)(char* msg);
class CMother
{
protected:
void SetFunctionPtr(FuncPtr ptr)
{
//get ptr here
}
};
class CSon : public CMother
{
public:
CSon()
{
SetFunctionPtr((FuncPtr)MyFunc);
}
private:
int MyFunc(char* msg)
{
printf(msg);
return 0;
}
};
int main()
{
CSon son;
return 0;
}
但是当我尝试使用模板推广typedef
部分时,我得到fatal error C1001: INTERNAL COMPILER ERROR
产生此错误的完整代码是
#include <stdio.h>
template<class T>
typedef int(T::*FuncPtr)(char* msg);
class CMother
{
protected:
void SetFunctionPtr(FuncPtr ptr)
{
//get ptr here
}
};
class CSon : public CMother
{
public:
CSon()
{
SetFunctionPtr(MyFunc);
}
private:
int MyFunc(char* msg)
{
printf(msg);
return 0;
}
};
void mmm()
{
CSon son;
}
任何人都可以帮助我。
答案 0 :(得分:1)
C ++在C ++ 11之前没有模板typedef。