MSVC:C ++ 14:std:set:比较函数:为什么需要“const”?

Pav*_*kin 3 c++ const-correctness visual-c++ stdset c++14

示例代码:

#include <string>
#include <set>

using namespace std;

class x
{
private:
  int i;
public:
  int get_i() const { return i; }
};

struct x_cmp
{
    bool operator()(x const & m1, x const & m2)
#if _MSC_VER
    const
#endif
    {
        return m1.get_i() > m2.get_i();
    }
};

std::set<x, x_cmp> members;

void add_member(x const & member)
{
    members.insert(member);
}
Run Code Online (Sandbox Code Playgroud)

调用:

$ g++ -c -std=c++14 -pedantic -Wall -Wextra
<nothing>
$ clang++ -c -std=c++14 -pedantic -Wall -Wextra
<nothing>
$ icc -c -std=c++14 -pedantic -Wall -Wextra
<nothing>
$ cl /c /std:c++14 /Za
<nothing>
Run Code Online (Sandbox Code Playgroud)

问题:为什么msvc需要const而其他的不需要?或者为什么其他人不需要const

cig*_*ien 7

这是LWG2542。在 C++14 中,比较运算符的措辞为“可能为 const”,GCC 和 Clang 将其解释为表示比较运算符不需要限定const。MSVC 总是需要它。

这是一个措辞缺陷,因为关联容器的比较运算符应该是const限定的。这在 C++17 中进行了更改,要求比较器为const. 这是一个重大更改,因此有效(尽管已损坏)的 C++14 代码可能无法在 C++17 中编译。