以下程序是使用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;则程序将正常运行,没有例外。
为什么?
Cats萌萌
largeQ
波斯汪
相关分类