命名空间
变体
操作

std::from_chars

来自 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)
from_chars
(C++17)

 
定义在头文件 <charconv>
std::from_chars_result

    from_chars( const char* first, const char* last,

                /* 整数类型 */& value, int base = 10 );
(1) (自 C++17 起)
(自 C++23 起为 constexpr)
std::from_chars_result

    from_chars( const char* first, const char* last,
                /* 浮点类型 */& value,

                std::chars_format fmt = std::chars_format::general );
(2) (自 C++17 起)

分析字符序列 [firstlast) 以查找下面描述的模式。如果没有任何字符与模式匹配,或者通过解析匹配的字符获得的值在 value 的类型中不可表示,则 value 保持不变,否则将匹配模式的字符解释为算术值的文本表示形式,该算术值存储在 value 中。

1) 整数解析器:期望的模式与 std::strtol 在默认(“C”)区域设置和给定的非零数字基数中使用的模式相同,除了
  • "0x""0X" 前缀在 base 为 16 时不被识别
  • 仅识别减号(不识别加号),并且仅针对 value 的带符号整数类型
  • 不会忽略前导空格。
库为所有 cv 无限定的(自 C++23 起) 带符号和无符号整数类型以及 char 提供重载,作为参数 value 的引用类型。
2) 浮点解析器:期望的模式与 std::strtod 在默认(“C”)区域设置中使用的模式相同,除了
在任何情况下,结果值都将是最多两个浮点值之一,它们最接近字符串的匹配模式的值,之后根据 std::round_to_nearest 进行舍入。
库为所有 cv 无限定的 标准(直到 C++23) 浮点类型提供重载,作为参数 value 的引用类型。

内容

[编辑] 参数

first, last - 要解析的有效字符范围
value - 如果成功,则将解析后的值存储在其中的输出参数
base - 要使用的整数基数:2 到 36 之间的值(含)。
fmt - 要使用的浮点格式,std::chars_format 类型的位掩码

[编辑] 返回值

成功时,返回 std::from_chars_result 类型的 value,使得 ptr 指向与模式不匹配的第一个字符,或者如果所有字符都匹配并且 ec 被值初始化,则等于 last

如果没有模式匹配,则返回 std::from_chars_result 类型的 value,使得 ptr 等于 first 并且 ec 等于 std::errc::invalid_argumentvalue 保持不变。

如果模式匹配,但解析后的值不在 value 类型可表示的范围内,则返回 std::from_chars_result 类型的 value,使得 ec 等于 std::errc::result_out_of_range 并且 ptr 指向与模式不匹配的第一个字符。 value 保持不变。

[编辑] 异常

不抛出任何异常。

[编辑] 注释

与 C++ 和 C 库中的其他解析函数不同,std::from_chars 是与区域设置无关的、非分配的、非抛出的。仅提供其他库(例如 std::sscanf)使用的解析策略的一个小子集。这旨在允许在常见的高吞吐量上下文中(例如基于文本的交换 (JSONXML))使用最快的可能实现。

保证 std::from_chars 可以精确恢复由 std::to_chars 格式化的每个浮点值,仅在两个函数来自同一实现时提供。

由符号构成但后面没有数字的模式被视为没有匹配任何内容的模式。

特性测试 Std 特性
__cpp_lib_to_chars 201611L (C++17) 基本字符串转换(std::from_charsstd::to_chars
202306L (C++26) 测试 <charconv> 函数的成功或失败
__cpp_lib_constexpr_charconv 202207L (C++23) std::from_charsstd::to_chars 的整数类型重载添加 constexpr 修饰符

[编辑] 示例

#include <cassert>
#include <charconv>
#include <iomanip>
#include <iostream>
#include <optional>
#include <string_view>
#include <system_error>
 
int main()
{
    for (std::string_view const str : {"1234", "15 foo", "bar", " 42", "5000000000"})
    {
        std::cout << "String: " << std::quoted(str) << ". ";
        int result{};
        auto [ptr, ec] = std::from_chars(str.data(), str.data() + str.size(), result);
 
        if (ec == std::errc())
            std::cout << "Result: " << result << ", ptr -> " << std::quoted(ptr) << '\n';
        else if (ec == std::errc::invalid_argument)
            std::cout << "This is not a number.\n";
        else if (ec == std::errc::result_out_of_range)
            std::cout << "This number is larger than an int.\n";
    }
 
    // C++23's constexpr from_char demo / C++26's operator bool() demo:
    auto to_int = [](std::string_view s) -> std::optional<int>
    {
        int value{};
#if __cpp_lib_to_chars >= 202306L
        if (std::from_chars(s.data(), s.data() + s.size(), value))
#else
        if (std::from_chars(s.data(), s.data() + s.size(), value).ec == std::errc{})
#endif
            return value;
        else
            return std::nullopt;
    };
 
    assert(to_int("42") == 42);
    assert(to_int("foo") == std::nullopt);
#if __cpp_lib_constexpr_charconv and __cpp_lib_optional >= 202106
    static_assert(to_int("42") == 42);
    static_assert(to_int("foo") == std::nullopt);
#endif
}

输出

String: "1234". Result: 1234, ptr -> ""
String: "15 foo". Result: 15, ptr -> " foo"
String: "bar". This is not a number.
String: " 42". This is not a number.
String: "5000000000". This number is larger than an int.

[编辑] 缺陷报告

以下改变行为的缺陷报告被追溯地应用于之前发布的 C++ 标准。

DR 应用于 已发布的行为 正确行为
LWG 2955 C++17 此函数位于 <utility> 中,并使用 std::error_code 移动到 <charconv> 中,并使用 std::errc
LWG 3373 C++17 std::from_chars_result 可能包含其他成员 禁止使用其他成员

[编辑] 参见

std::from_chars 的返回值类型
(类) [编辑]
(C++17)
将整数或浮点数转换为字符序列
(函数) [编辑]
(C++11)(C++11)(C++11)
将字符串转换为有符号整数
(函数) [编辑]
(C++11)(C++11)(C++11)
将字符串转换为浮点数
(函数) [编辑]
将字节字符串转换为整数值
(函数) [编辑]
将字节字符串转换为浮点数
(函数) [编辑]
stdin、文件流或缓冲区读取格式化的输入
(函数) [编辑]
提取格式化的数据
(std::basic_istream<CharT,Traits> 的公有成员函数) [编辑]