std::to_chars_result
来自 cppreference.com
定义在头文件 <charconv> 中 |
||
struct to_chars_result; |
(自 C++17 起) | |
std::to_chars_result
是 std::to_chars 的返回类型。它没有基类,并且只有以下成员。
内容 |
[编辑] 数据成员
成员名称 | 定义 |
ptr |
类型为 char* 的指针 (公共成员对象) |
ec |
类型为 std::errc 的错误代码 (公共成员对象) |
[编辑] 成员和友元函数
operator==(std::to_chars_result)
friend bool operator==( const to_chars_result&, const to_chars_result& ) = default; |
(自 C++20 起) | |
使用 默认比较 比较这两个参数(它使用 operator== 分别比较 ptr
和 ec
)。
此函数对普通的 无限定 或 限定查找 不可見,只能通过 依赖于参数的查找 在 std::to_chars_result 是参数的关联类时被找到。
!=
运算符是从 operator==
合成 的。
operator bool
constexpr explicit operator bool() const noexcept; |
(自 C++26 起) | |
检查转换是否成功。返回 ec == std::errc{}。
[编辑] 备注
特性测试 宏 | 值 | Std | 特性 |
---|---|---|---|
__cpp_lib_to_chars |
201611L | (C++17) | 基本字符串转换 (std::to_chars, std::from_chars) |
202306L | (C++26) | 测试 <charconv> 函数的成功或失败 |
[编辑] 示例
运行此代码
#include <array> #include <charconv> #include <iostream> #include <string_view> #include <system_error> void show_to_chars(auto... format_args) { std::array<char, 10> str; #if __cpp_lib_to_chars >= 202306L and __cpp_structured_bindings >= 202406L // use C++26 structured bindings declaration as condition (P0963) // and C++26 to_chars_result::operator bool() for error checking (P2497) if (auto [ptr, ec] = std::to_chars(str.data(), str.data() + str.size(), format_args...)) std::cout << std::string_view(str.data(), ptr) << '\n'; else std::cout << std::make_error_code(ec).message() << '\n'; #elif __cpp_lib_to_chars >= 202306L // use C++26 to_chars_result::operator bool() for error checking (P2497) if (auto result = std::to_chars(str.data(), str.data() + str.size(), format_args...)) std::cout << std::string_view(str.data(), result.ptr) << '\n'; else std::cout << std::make_error_code(result.ec).message() << '\n'; #else // fallback to C++17 if-with-initializer and structured bindings if (auto [ptr, ec] = std::to_chars(str.data(), str.data() + str.size(), format_args...); ec == std::errc()) std::cout << std::string_view(str.data(), ptr - str.data()) << '\n'; else std::cout << std::make_error_code(ec).message() << '\n'; #endif } int main() { show_to_chars(42); show_to_chars(+3.14159F); show_to_chars(-3.14159, std::chars_format::fixed); show_to_chars(-3.14159, std::chars_format::scientific, 3); show_to_chars(3.1415926535, std::chars_format::fixed, 10); }
可能的输出
42 3.14159 -3.14159 -3.142e+00 Value too large for defined data type
[编辑] 另请参阅
(C++17) |
将整数或浮点数转换为字符序列 (函数) |