在 .dll 文件上
//SWC.h
#ifndef _SWC_
# define _SWC_
# define SWC_CALL __declspec(dllexport)
#else
# define SWC_CALL __declspec(dllimport)
#endif
namespace SWC
{
struct SWC_CALL Mouse
{
//interface
};
class SWC_CALL SWC_Base : public someClass1, public someClass2
{
static Mouse mouse;
};
//other classes goes here...
}
//SWC_Base.cpp
namespace SWC
{
Mouse SWC_Base::mouse; //needed, to compile
//other SWC_Base function definition
}
在 .exe 文件上
用static struct Mouse mouse
我定义的SWC_Base
我得到链接错误
我通过在此文件上再次重新定义它来解决我的问题
//main.cpp
#include "SWC.h"
#pragma comment (lib, "..\\SWC")
SWC::Mouse SWC::SWC_Base::mouse; //<- why do I need to redefine it again?
int main()
{
//...
return 0;
}
我已经在它的 .cpp 文件上定义了 SWC_Base::mouse,为什么我需要在使用它的文件上重新定义它?我知道我可能会遇到更多问题,因为我的 .dll 项目正在增长,上面有静态变量。