• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    公众号

C++出现error:nomatchforcallto'(MyCompare)(constkey_type&,constPerson&)' ...

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

以下是代码

#include <iostream>
#include <string>
#include <typeinfo>
#include <vector>
#include <deque>
#include <list>
#include <set>
#include <map>
#include <algorithm>

using namespace std;

class Person{
public:
    string m_Name;
    int m_Age;
    Person(string name, int age)
    {
        this->m_Name = name;
        this->m_Age = age;
    }
};
class MyCompare{
public:
    bool operator()(Person &p1, Person &p2)
    {
        return p1.m_Age > p2.m_Age;
    }
};
void printPerson( map<Person, int, MyCompare> &mp)
{
    for(map<Person, int, MyCompare>::iterator it = mp.begin(); it != mp.end(); it++)
    {
        cout << (*it).first.m_Name << " " << it->first.m_Age << endl;
     }
}
void test01(void)
{
    map<Person, int, MyCompare> mp;
    Person p1("aaa", 30);
    Person p2("bbb", 40);
    Person p3("ccc", 10);
    Person p4("ddd", 28);

    mp.insert(pair<Person, int>(p1, 1));
    mp.insert(pair<Person, int>(p2, 2));
    mp.insert(pair<Person, int>(p3, 3));
    mp.insert(pair<Person, int>(p4, 4));

    printPerson(mp);

}
int main(void)
{
    test01();
    system("pause");
    return 0;
}

运行报错

D:\Qt5.6.1\Tools\mingw492_32\i686-w64-mingw32\include\c++\bits\stl_tree.h:1445: error: no match for call to '(MyCompare) (const key_type&, const Person&)'
    __comp = _M_impl._M_key_compare(__k, _S_key(__x));
           ^

 

分析原因

写了一个代替map容器默认排序的比较仿函数,提示说写的这个函数没有跟系统匹配的,对比发现,我写的仿函数参数没有用const修饰,对参数加上const之后运行成功。


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
直接型FIR滤波器的C语言实现发布时间:2022-07-14
下一篇:
c++中变量、变量名、变量地址、指针、引用等含义发布时间:2022-07-14
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap