クラスメンバー関数をパラメーターとして渡そうとしていますが、これは次のコードを使用しているときに完全に機能します
#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;
}
誰でもこれで私を助けてくれますか。