namespace std::chrono {
template <class charT, class traits,
class Rep, class Period, class Alloc = std::allocator<charT>>
basic_istream<charT, traits>&
from_stream(std::basic_istream<charT, traits>& is,
const charT* fmt,
duration<Rep, Period>& d,
std::basic_string<charT, traits, Alloc>* abbrev = nullptr,
minutes* offset = nullptr); // (1) C++20
}
概要
フォーマット指定して入力ストリームからduration
オブジェクトに入力する。
効果
- パラメータ
fmt
で指定されたフォーマットフラグを使用して、入力を解析し、tp
に代入する - いずれのフラグも
duration
に影響しないものである場合、d
には値ゼロが代入される - タイムゾーンフォーマット
"%Z"
が指定され、解析が成功した場合、パラメータabbrev
が非ヌルである場合に*abbrev
にタイムゾーン名が代入される - タイムゾーンとしてUTC時間からのオフセット時間 (日本なら
"+0900"
) を意味するフォーマット"%z"
が指定され、解析が成功した場合、パラメータoffset
が非ヌルである場合に*offset
にその値が代入される
戻り値
return is;
例
#include <iostream>
#include <chrono>
#include <sstream>
namespace chrono = std::chrono;
int main()
{
{
std::stringstream ss;
ss << "3";
chrono::seconds sec{0};
chrono::from_stream(ss, "%S", sec);
std::cout << sec << std::endl;
}
{
std::stringstream ss;
ss << "+0900 JST";
chrono::seconds sec{3};
std::string abbrev;
chrono::minutes offset{0};
chrono::from_stream(ss, "%S", sec, &abbrev, &offset);
std::cout << sec << std::endl;
std::cout << abbrev << std::endl;
std::cout << chrono::floor<chrono::hours>(offset) << std::endl;
}
}
出力
3s
0s
JST
9h
バージョン
言語
- C++20
処理系
- Clang: 9.0 ❌
- GCC: 9.2 ❌
- Visual C++: 2019 Update 3 ❌
関連項目
- chronoの
parse()
(入力フォーマットの詳細)