Why will std::sort crash if the comparison function is not as operator lt;?(如果比较函数不是运算符lt;,为什么std::sort会崩溃?)
问题描述
以下程序是用VC++ 2012编译的.
The following program is compiled with 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; 然后程序按预期运行,没有异常.
If I change return a <= other.a; to return a < other.a; then the program runs as expected with no exception.
为什么?
推荐答案
std::sort 需要一个满足严格弱排序规则的排序器,解释这里
std::sort requires a sorter which satisfies the strict weak ordering rule, which is explained
here
所以,你的比较器说 a <b当a == b不遵循严格弱排序规则时,算法可能会崩溃,因为它会进入一个无限循环.
So, your comparer says that a < bwhen a == b which doesn't follow the strict weak ordering rule, it is possible that the algorithm will crash because it'll enter in an infinite loop.
这篇关于如果比较函数不是运算符<,为什么std::sort会崩溃?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如果比较函数不是运算符<,为什么std::sort会崩溃?
基础教程推荐
- 通过引用传递 C++ 迭代器有什么问题? 2022-01-01
- GDB 显示调用堆栈上函数地址的当前编译二进制文 2022-09-05
- 为什么派生模板类不能访问基模板类的标识符? 2021-01-01
- 初始化列表*参数*评估顺序 2021-01-01
- 非静态 const 成员,不能使用默认赋值运算符 2022-10-09
- CString 到 char* 2021-01-01
- 如果我为无符号变量分配负值会发生什么? 2022-01-01
- 为什么 typeid.name() 使用 GCC 返回奇怪的字符以及如 2022-09-16
- 我应该对 C++ 中的成员变量和函数参数使用相同的名称吗? 2021-01-01
- 为什么 RegOpenKeyEx() 在 Vista 64 位上返回错误代码 2021-01-01
