解决方案:
“error LNK1169: 找到一个或多个多重定义的符号”的解决方法(转载)
遇到的问题:
在.h头文件中采用namespace 命名空间报错
test.h
namespace LMR
{
int flag;
}
test.cpp
#include"test.h"
main.cpp
#include"test.h"
int main()
{
}
2022-12-18 23:13:09
遇到的问题:
test.h
namespace LMR
{
int flag;
}
test.cpp
#include"test.h"
main.cpp
#include"test.h"
int main()
{
}