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++ には、C++11 までテンプレート typedef がありません。

于 2013-04-13T08:48:06.623 に答える