0

我正在尝试将类成员函数作为参数传递,当我使用以下代码时,这可以完美地工作

#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;
}

任何人都可以帮我解决这个问题。

4

1 回答 1

1

在 C++11 之前,C++ 没有模板类型定义。

于 2013-04-13T08:48:06.623 回答