gpt4 book ai didi

c++ - 排序 multimap,P>

转载 作者:行者123 更新时间:2023-11-28 08:19:31 25 4
gpt4 key购买 nike

我写了一个排序类来对multimap进行排序,但是当我将元素插入到map中时,出现以下编译错误:

1>c:\program files\microsoft visual studio 9.0\vc\include\xutility(313) : error C2664: 'bool MapSort::operator ()(std::pair<_Ty1,_Ty2> &,std::pair<_Ty1,_Ty2> &)' : cannot convert parameter 1 from 'const std::pair<_Ty1,_Ty2>' to 'std::pair<_Ty1,_Ty2> &'

有人可以帮忙吗?

class MapSort
{
public:
MapSort();
~MapSort();

public:
bool operator() ( pair<T,T>& i, pair<T,T>& j)
{
return i.first.GetID() < j.first.GetID();

}

};


multimap < pair < T,T >,P > CurrMap;
CurrMap.insert( multimap < pair < T, T >,Metric >::value_type(make_pair< T,T >(aAttractionA,aAttractionB),CurrP))
//

最佳答案

pair<T,T>& i  and pair<T,T>& j

应该是

pair<T,T> const& i and pair<T,T> const& j

(引用)

关于c++ - 排序 multimap<pair<T,T>,P>,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6408915/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com