map的编译问题

#include<map>#include<string>#include<iostream>usingnamespacestd;classKey{public:stri... #include <map>
#include <string>
#include <iostream>

using namespace std;
class Key
{
public:
string k;
};

int main(int argc, char* argv[])
{
Key k;
pair<Key, string> p(k, "world");
map<Key, string> m;
m.insert(p);
}

在insert那行编译报错,注释掉就不报错了:
/usr/lib/gcc/i386-redhat-linux/4.1.2/../../../../include/c++/4.1.2/bits/stl_function.h: In member function 'bool std::less<_Tp>::operator()(const _Tp&, const _Tp&) const [with _Tp = Key]':
/usr/lib/gcc/i386-redhat-linux/4.1.2/../../../../include/c++/4.1.2/bits/stl_tree.h:921: instantiated from 'std::pair<typename std::_Rb_tree<_Key, _Val, _KeyOfValue, _Compare, _Alloc>::iterator, bool> std::_Rb_tree<_Key, _Val, _KeyOfValue, _Compare, _Alloc>::insert_unique(const _Val&) [with _Key = Key, _Val = std::pair<const Key, std::basic_string<char, std::char_traits<char>, std::allocator<char> > >, _KeyOfValue = std::_Select1st<std::pair<const Key, std::basic_string<char, std::char_traits<char>, std::allocator<char> > > >, _Compare = std::less<Key>, _Alloc = std::allocator<std::pair<const Key, std::basic_string<char, std::char_traits<char>, std::allocator<char> > > >]'
/usr/lib/gcc/i386-redhat-linux/4.1.2/../../../../include/c++/4.1.2/bits/stl_map.h:396: instantiated from 'std::pair<typename std::_Rb_tree<_Key, std::pair<const _Key, _Tp>, std::_Select1st<std::pair<const _Key, _Tp> >, _Compare, typename _Alloc::rebind<std::pair<const _Key, _Tp> >::other>::iterator, bool> std::map<_Key, _Tp, _Compare, _Alloc>::insert(const std::pair<const _Key, _Tp>&) [with _Key = Key, _Tp = std::basic_string<char, std::char_traits<char>, std::allocator<char> >, _Compare = std::less<Key>, _Alloc = std::allocator<std::pair<const Key, std::basic_string<char, std::char_traits<char>, std::allocator<char> > > >]'
a.cpp:18: instantiated from here
/usr/lib/gcc/i386-redhat-linux/4.1.2/../../../../include/c++/4.1.2/bits/stl_function.h:227: error: no match for 'operator<' in '__x < __y'
展开
 我来答
okfineandyou
推荐于2017-10-01 · TA获得超过436个赞
知道答主
回答量:136
采纳率:0%
帮助的人:90万
展开全部
Key 类中要重载'<'操作符,比如
bool operator < (const Key& o) const{
if(o.k!="1")
return false;
else return true;
}
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式