我有一个像这样的头文件
#ifndef MYAPP
#define MYAPP
#include <map>
namespace MyApp{
class MyClass{
private:
static std::map<int, bool> SomeMap;
public:
static void DoSomething(int arg);
};
}
#endif MYAPP
和实施文件
#include "Header.h"
#include <map>
namespace MyApp{
void MyClass::DoSomething(int arg){
if(MyClass::SomeMap[5]){
...
}
}
}
当我尝试编译它时,它给了我一个错误 class“MyClass”没有成员“SomeMap”。我该如何解决这个问题?
答案 0 :(得分:1)
您忘记定义静态变量:
#include "Header.h"
#include <map>
namespace MyApp{
std::map<int, bool> MyClass::SomeMap;
void MyClass::DoSomething(int arg){
if(MyClass::SomeMap[5]){
...
}
}
}
P.S。在类定义之后,您的示例代码缺少;
。