首页 > 其他 > 详细

Expression:invalid operator<断言

时间:2014-02-18 01:09:53      阅读:547      评论:0      收藏:0      [点我收藏+]
#include <iostream>
#include <map>
using namespace std;


/*
** 测试目的:重现断言,"include\xtree Line:1746 Expression:invalid operator<"。
** 重现手法:operator<都返回true
** 结论:map[key] = value.key重复是不会导致以上断言,而是比较函数写法错误
*/
struct Test
{
public:
bool operator<(const Test& token) const
{
if (value < token.value) {
return true;
} else {
return true; // 注意,都是true
}
}


public:
long value;
};


void main()
{
Test t1, t2;
t1.value = 1;
t2.value = 2;
map<Test, long> mapValues;
mapValues[t1] = 1;
mapValues[t2] = 2;
int i = 0;
cin >> i;
}

Expression:invalid operator<断言

原文:http://blog.csdn.net/wusoule/article/details/19331755

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!