命名空间
变体
操作

std::to_chars_result

来自 cppreference.com
< cpp‎ | utility
 
 
实用程序库
语言支持
类型支持 (基本类型,RTTI)
库特性测试宏 (C++20)
动态内存管理
程序实用程序
协程支持 (C++20)
可变参数函数
调试支持
(C++26)
三方比较
(C++20)
(C++20)(C++20)(C++20)
(C++20)(C++20)(C++20)
通用实用程序
日期和时间
函数对象
格式化库 (C++20)
(C++11)
关系运算符 (C++20 中已弃用)
整数比较函数
(C++20)(C++20)(C++20)   
(C++20)
交换类型操作
(C++14)
(C++11)
(C++11)
(C++11)
(C++17)
通用词汇类型
(C++11)
(C++17)
(C++17)
(C++17)
(C++11)
(C++17)
(C++23)
基本字符串转换
(C++17)
(C++17)
to_chars_result
(C++17)


 
定义在头文件 <charconv>
struct to_chars_result;
(自 C++17 起)

std::to_chars_resultstd::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== 分别比较 ptrec)。

此函数对普通的 无限定限定查找 不可見,只能通过 依赖于参数的查找 在 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)
将整数或浮点数转换为字符序列
(函数) [编辑]