1 typedef struct tagRoadKey 2 { 3 int nType; 4 int nScale; 5 } 6 }ROADKEY;
但是编译的时候,报了这个错误 d:\program files\microsoft visual studio\vc98\include\functional(86) : error C2784: 'bool __cdecl std::operator <(const class std::multimap<_K,_Ty,_Pr,_A> &,const class std::multimap<_K,_Ty,_Pr,_A> &)' : could not deduce template argument for 'const class std::multimap<_K,_Ty,_Pr,_A> &' from 'const struct tagRoadKey' 说实话,当初不太明白这是什么错误,但从个人经验来判断,问题肯定出在这个key上面,后来google下,看到了别人写的文章,才知道原因,原来map中的key默认是以less<>升序对元素排序(排序准则也可以修改),也就是说key必须具备operator<对元素排序,而平常我们的用的基本上都是基本类型元素作为key,所以就不存在这个问题了,更详细的解释请看C++标准程序库一书,第六章,set容器章节。 改正后的结构体如下: 1 typedef struct tagRoadKey 2 { 3 int nType; 4 int nScale; 5 6 bool operator < ( const tagRoadKey & other) const 7 { 8 if (nType < other.nType) // 类型按升序排序 9 { 10 return true ; 11 } 12 else if (nType == other.nType) // 如果类型相同,按比例尺升序排序 13 { 14 return nScale < other.nScale; 15 } 16 17 return false ; 18 } 19 }ROADKEY;