c++:undefined reference to `execute::show_order(std::__cxx11::basic_string<char, std::char_trait

错误原因:

在使用自创建的头文件里的函数时,没有加上作用域。所以程序找不到对应的声明。

解决方法:

加上作用域
c++:undefined reference to `execute::show_order(std::__cxx11::basic_string<char, std::char_trait_第1张图片

你可能感兴趣的:(个人学习_研究生,c++,开发语言)