unable to find numeric literal operator 'operator""s
时间: 2024-05-26 21:16:22 浏览: 151
Visual Studio创建Qt项目时“Unable to find a Qt build”错误的解决方法1
这个错误通常是因为您正在使用的编译器不支持 C++14 引入的标准库字符串字面量操作符。这个操作符允许您使用像 `"hello"s` 这样的字符串字面量创建 std::string 对象,而不需要手动调用构造函数。如果您的编译器不支持这个操作符,请尝试使用传统的 std::string 构造函数,例如 `std::string("hello")`。另外,也可以尝试升级您的编译器版本,以获得更好的 C++14 支持。
阅读全文