我不明白为什么这段代码不能编译。根据一些网站,a == b
应该重写为a.operator<=>(b) == 0
,但是 clang 和 gcc 都无法编译。
#include <utility>
#include <stdio.h>
struct A {
public:
int x_ = 0;
public:
std::strong_ordering operator<=>(const A& o) const
{
return int(x_ == o.x_ ? 0 : x_ < o.x_ ? -1 : 1) <=> 0;
}
};
int main()
{
A a{1};
A b{2};
if(a == b) printf("a==b\n");
}
但是,如果您使用默认值,一切正常!
...
std::strong_ordering operator<=>(const A& o) const = default;
...
所以我的问题是,你如何手动编写default
实现<=>
?