本文主要是介绍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) const//bool operator()(const stu
这篇关于61_C++_bug【error: no match for call to ‘(MYsort_num) (const key_type, const stu)‘】的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!