MSVC 的标准库没有为std::string、std::shared_ptr 等定义飞船运算符?

MSVC's standard library does not define spaceship operator for std::string, std::shared_ptr, and so?

我正在努力使我的程序成为多平台的,最初是为 Linux 编写的。 MSVC(我使用的是 19.28)被告知从 19.20 版(https://en.cppreference.com/w/cpp/compiler_support/20)开始支持宇宙飞船运算符,但它似乎没有为 std::string 或 std::shared_ptr 定义此运算符(可能对许多其他生物)。

我真正想做的是:


// int x(1), y(2); // ok!
// std::string x("1"), y("2"); // nope
std::shared_ptr<int> x(new int), y(new int); // nope
auto r = x <=> y; // error C2676 for string and shared_ptr

实例: https://godbolt.org/z/Eo49hh

它在 GCC 10.2 下工作。我是否遗漏了一些要点,或者它没有得到真正的完全支持?

MSVC 支持 operator<=>,但这并不意味着它们已为所有库实现。从你的 link 到 cppreference,在 C++20 library features 部分下,它实际上表明 MSVC 没有 P1614R2 (Adding <=> 到标准库)

它部分支持 P0768R1 (Library support for operator<=> <compare>) and full support for P1185R2运算符