D:\CLion 2023.1.4\bin\mingw\bin/ld.exe: CMakeFiles\ProgrammingTest.dir/objects.a(platform.cpp.obj):platform.cpp:(.rdata$.refptr._ZN4User5countE[.refptr._ZN4User5countE]+0x0): undefined reference to `User::count' D:\CLion 2023.1.4\bin\mingw\bin/ld.exe: CMakeFiles\ProgrammingTest.dir/objects.a(platform.cpp.obj):platform.cpp:(.rdata$.refptr._ZN8platform9OrderListE[.refptr._ZN8platform9OrderListE]+0x0): undefined reference to `platform::OrderList' D:\CLion 2023.1.4\bin\mingw\bin/ld.exe: CMakeFiles\ProgrammingTest.dir/objects.a(platform.cpp.obj):platform.cpp:(.rdata$.refptr._ZN8platform9GoodsListE[.refptr._ZN8platform9GoodsListE]+0x0): undefined reference to `platform::GoodsList' D:\CLion 2023.1.4\bin\mingw\bin/ld.exe: CMakeFiles\ProgrammingTest.dir/objects.a(platform.cpp.obj):platform.cpp:(.rdata$.refptr._ZN8platform8UserListE[.refptr._ZN8platform8UserListE]+0x0): undefined reference to `platform::UserList' collect2.exe: error: ld returned 1 exit status mingw32-make[3]: *** [CMakeFiles\ProgrammingTest.dir\build.make:178: ProgrammingTest.exe] Error 1 mingw32-make[2]: *** [CMakeFiles\Makefile2:82: CMakeFiles/ProgrammingTest.dir/all] Error 2 mingw32-make[1]: *** [CMakeFiles\Makefile2:89: CMakeFiles/ProgrammingTest.dir/rule] Error 2 mingw32-make: *** [Makefile:123: ProgrammingTest] Error 2
时间: 2024-04-13 07:24:40 浏览: 238
Clion-2023.1.4长期使用版
这个错误是链接错误,它表示编译器无法找到 `User::count`、`platform::OrderList`、`platform::GoodsList` 和 `platform::UserList` 的定义。
这种错误通常发生在以下情况下:
1. 忘记在代码中定义或声明这些变量。
2. 忘记将相关的源文件添加到编译器的编译选项中。
3. 在使用这些变量的文件中,没有包含定义它们的头文件。
请检查以下几点以解决这个问题:
1. 确保在代码中定义了 `User::count`、`platform::OrderList`、`platform::GoodsList` 和 `platform::UserList`。如果没有,请确保它们被正确地声明和定义。
2. 确保将相关的源文件添加到编译器的编译选项中,以便编译器可以找到这些定义。你可以检查你的构建系统(如CMake或Makefile)以确保源文件被正确地包含和编译。
3. 在使用这些变量的文件中,确保包含了定义它们的头文件。如果没有包含正确的头文件,编译器将无法找到这些定义。
如果你能提供更多的代码和构建系统信息,我可以给出更具体的帮助。
阅读全文