std::from_chars_result
From cppreference.com
| ヘッダー <charconv> で定義 |
||
| struct from_chars_result; |
(C++17以降) | |
std::from_chars_result は、std::from_chars の戻り値の型です。基底クラスはなく、次のメンバのみを持ちます。
目次 |
[編集] データメンバ
| メンバ名 | 定義 |
| ptr |
const char* 型のポインタ (public メンバーオブジェクト) |
| エラーコード |
std::errc 型のエラーコード (public メンバーオブジェクト) |
[編集] メンバ関数およびフレンド関数
operator==(std::from_chars_result)
| friend bool operator==( const from_chars_result&, const from_chars_result& ) = default; |
(C++20以降) | |
2つの引数をデフォルト比較(それぞれptrとecを比較するためにoperator==を使用します)で比較します。
この関数は、通常の非修飾または修飾検索では可視ではなく、std::from_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 <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++17) |
文字シーケンスを整数値または浮動小数点数値に変換する (関数) |