名稱空間
變體
操作

std::to_chars_result

來自 cppreference.com
< cpp‎ | 工具
定義於標頭檔案 <charconv>
struct to_chars_result;
(C++17 起)

std::to_chars_resultstd::to_chars 的返回型別。它沒有基類,只包含以下成員。

目錄

[編輯] 資料成員

成員名稱 (Member name) 定義
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{}

[編輯] 注意

特性測試 標準 特性
__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)
將整數或浮點值轉換為字元序列
(function) [編輯]