52 28 C:\编程用\cpp\sdvdvdvdf.cpp [Error] no matching function for call to 'Staff::Staff(std::string&, char&, std::string&)'
时间: 2023-06-26 07:08:28 浏览: 121
fatal error: boostdesc_bgm.i: No such file or directory补充文件
这个错误提示表明在 `sdvdvdvdf.cpp` 文件的第 28 行出现了问题,具体是在构造函数调用时发生了错误。错误的原因是构造函数的参数类型与传入的参数类型不匹配。具体来说,`Staff::Staff()` 函数的参数应该是 `std::string, char, std::string` 类型的,但是传入的参数类型不匹配。你需要检查一下传入的参数类型是否正确,如果不正确,需要进行调整。
阅读全文