如何从结构中调用静态类方法?

时间:2014-04-30 23:00:33

标签: c++ class visual-studio-2008 struct

我一直在C ++中避免使用以下内容(我相信在VS 2008中使用C++03),但现在我很好奇是否可以这样做?让我用代码解释一下。

//Definitions.h header file
//INFO: This header file is included before CMyClass definition because
//      in contains struct definitions used in that class

struct MY_STRUCT{
    void MyMethod()
    {
        //How can I call this static method?
        int result = CMyClass::StaticMethod();
    }
};

然后:

//myclass.h header file
#include "Definitions.h"

class CMyClass
{
public:
    static int StaticMethod();
private:
    MY_STRUCT myStruct;
};

//myclass.cpp implementation file

int CMyClass::StaticMethod()
{
    //Do work
    return 1;
}

1 个答案:

答案 0 :(得分:3)

在这种情况下,您需要将MY_STRUCT::MyMethod的实现移到头文件之外,并将其放在其他位置。这样,您可以在未声明Definitions.h的情况下添加CMyClass

因此,您的Definitions.h将更改为:

struct MY_STRUCT{
    void MyMethod();
};

然后在其他地方:

void MY_STRUCT::MyMethod()
{
    int result = CMyClass::StaticMethod();
}