Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
#include <string> #include <string_view> using namespace std::literals; int main() { "hello"s + "world"; // ok "hello"s + "world"sv; // error }
见在线演示
为什么不在 "hello"s + "world"sv C++20 中有效?
"hello"s + "world"sv