首页
Python
Java
前端
数据库
Linux
Chatgpt专题
开发者工具箱
mysort专题
61_C++_bug【error: no match for call to ‘(MYsort_num) (const key_type, const stu)‘】
图示: 解析: multiset容器在配置自写的仿函数的时候,无法识别到同类型的参数类型; 这个参数类型在set容器中,编译器就已经默认提供好了,我们需要和其保持一致; 或者去掉’&’,只保持(stu a, stu b)形式 //仿函数--可以使用class MYsort_num{public://bool operator()(const stu a, const stu b)
阅读更多...