静态错误:
in test1.dll:
xxx.h
class AFX_EXT_CLASS CTest1
{
static int num;
}
xxx.cpp
int CTest1::num = 0;
in a cpp of test2.dll: test2 is dependent test1.dll
...
int i = CTest1::num;
...
in a cpp of App: App is dependent test1.dll & test2.dll
...
int i = CTest1::num;
...
在 test2.dll 中,静态上的“未解析的外部符号”:CTest1::num。但在App中,没问题。
顺便说一句:如果我使用 CTest1 的其他功能,没问题。
帮帮我,非常感谢。