這篇文章給大家分享的是有關(guān)Expression:invalid comarator怎么辦的內(nèi)容。小編覺得挺實用的,因此分享給大家做個參考,一起跟隨小編過來看看吧。
創(chuàng)新互聯(lián)堅持“要么做到,要么別承諾”的工作理念,服務(wù)領(lǐng)域包括:成都網(wǎng)站設(shè)計、成都網(wǎng)站制作、企業(yè)官網(wǎng)、英文網(wǎng)站、手機端網(wǎng)站、網(wǎng)站推廣等服務(wù),滿足客戶于互聯(lián)網(wǎng)時代的梁河網(wǎng)站設(shè)計、移動媒體設(shè)計的需求,幫助企業(yè)找到有效的互聯(lián)網(wǎng)解決方案。努力成為您成熟可靠的網(wǎng)絡(luò)建設(shè)合作伙伴!
場景
定義函數(shù)如下:
template
bool operator() (const T& x, const T& y) const
{
return x > y;
}
};
template
bool operator() (const T& x, const T& y) const
{
return x < y;
}
};
解決
vs2010后都是嚴格比較,相等的兩個元素,一定要返回false,可以看到STL的源碼:
[cpp]
template
bool _Debug_lt_pred(_Pr _Pred,
_Ty1& _Left, _Ty2& _Right,
_Dbfile_t _File, _Dbline_t _Line)
{ // test if _Pred(_Left, _Right) and _Pred is strict weak ordering
if (!_Pred(_Left, _Right))
return (false);
else if (_Pred(_Right, _Left))
_DEBUG_ERROR2("invalid operator<", _File, _Line);
return (true);
}
如果left和right都一樣,STL就會報錯。。所以只能修改下自己的代碼,當(dāng)相等的時候,就返回false了
template
bool operator() (const T& x, const T& y) const
{
if (x == y) return false;
return x > y;
}
};
template
bool operator() (const T& x, const T& y) const
{
if (x == y) return false;
return x < y;
}
};
感謝各位的閱讀!關(guān)于“Expression:invalid comarator怎么辦”這篇文章就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,讓大家可以學(xué)到更多知識,如果覺得文章不錯,可以把它分享出去讓更多的人看到吧!