我<=>
在 C++20 中使用新的宇宙飞船运算符遇到了一个奇怪的行为。我将 Visual Studio 2019 编译器与/std:c++latest
.
正如预期的那样,这段代码编译得很好:
#include <compare>
struct X
{
int Dummy = 0;
auto operator<=>(const X&) const = default; // Default implementation
};
int main()
{
X a, b;
a == b; // OK!
return 0;
}
但是,如果我将X更改为:
struct X
{
int Dummy = 0;
auto operator<=>(const X& other) const
{
return Dummy <=> other.Dummy;
}
};
我收到以下编译器错误:
error C2676: binary '==': 'X' does not define this operator or a conversion to a type acceptable to the predefined operator
我也在clang上试过这个,我得到了类似的行为。
我会很感激一些解释为什么默认实现operator==
正确生成,但自定义的没有。