E:\al\studentManager\mainwindow.cpp:263: error: undefined reference to `studentManager::getAllCourseName()'
时间: 2024-04-27 18:23:32 浏览: 73
StudentManager.cpp
这个错误提示表明在你的 `mainwindow.cpp` 文件中,调用了 `studentManager::getAllCourseName()` 函数,但是编译器找不到这个函数的定义。可能的原因有:
1. `getAllCourseName()` 函数没有被正确实现,或者实现存在错误。
2. `getAllCourseName()` 函数的实现在另一个文件中,但是没有被正确链接。
3. `getAllCourseName()` 函数的定义被放在了条件编译的语句块中,导致编译器无法识别。
你需要检查一下以上几点,找到问题所在并进行修正。
阅读全文