我一直在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;
}
答案 0 :(得分:3)
在这种情况下,您需要将MY_STRUCT::MyMethod
的实现移到头文件之外,并将其放在其他位置。这样,您可以在未声明Definitions.h
的情况下添加CMyClass
。
因此,您的Definitions.h
将更改为:
struct MY_STRUCT{
void MyMethod();
};
然后在其他地方:
void MY_STRUCT::MyMethod()
{
int result = CMyClass::StaticMethod();
}