я пытаюсь передать функцию-член класса в качестве параметров
это отлично работает, когда я использую следующий код
#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;
}
Может ли кто-нибудь помочь мне с этим, пожалуйста.
C ++ не имеет шаблонных типовых значений до C ++ 11.
Других решений пока нет …