#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;
}
#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;
}