错误 3 error LNK2001:
无法解析的外部符号 “public: static struct table * security::head” ([email protected]@@[email protected]@A) F:\github\membership\security\security\security.obj
出现这种错误,一般是在类当中声明了静态变量,但是没有在类外进行定义,从而导致此错误,解决错误只需在类外进行定义即可。
security.obj : error LNK2005: “public: static struct table * security::Last” ([email protected]@@[email protected]@A) 已经在 main.obj 中定义
1>F:\github\membership\security\Debug\security.exe : fatal error LNK1169: 找到一个或多个多重定义的符号
出现这种错误是类中的静态变量定义在了头文件区,将静态变量定义在.cpp文件中,即可解决。
时间: 2024-12-30 03:33:18