【发布时间】:2014-01-07 00:58:10
【问题描述】:
我的 Vec2 的 Operator
bool Vec2::operator<( const Vec2& v ) const
{
if(x < v.x)
return true;
else
return y < v.y;
}
无效的运算符
template<class _Pr, class _Ty1, class _Ty2> inline
bool __CLRCALL_OR_CDECL _Debug_lt_pred(_Pr _Pred, const _Ty1& _Left, const _Ty2& _Right,
const wchar_t *_Where, unsigned int _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<", _Where, _Line);
return (true);
}
谢谢
【问题讨论】:
-
断言是什么?
-
无效运算符
-
使用
std::tie或std::make_pair为你做严格的弱排序。
标签: c++ operator-overloading operators