以下程序使用 VC++ 2012 编译。
#include <algorithm>
struct A
{
A()
: a()
{}
bool operator <(const A& other) const
{
return a <= other.a;
}
int a;
};
int main()
{
A coll[8];
std::sort(&coll[0], &coll[8]); // Crash!!!
}
如果我更改return a <= other.a;
为,return a < other.a;
则程序按预期运行,无一例外。
为什么?