- chrono[meta header]
- std[meta namespace]
- class[meta id-type]
- cpp20[meta cpp]
namespace std {
template <class charT>
struct formatter<chrono::month_weekday_last, charT>;
}
month_weekday_last
クラスに対するstd::formatter
クラステンプレートの特殊化。
フォーマットフラグとしては、month
とweekday_last
で利用可能なフォーマットフラグを使用できる。
#include <iostream>
#include <chrono>
#include <format>
namespace chrono = std::chrono;
int main() {
chrono::month_weekday_last date = chrono::March/chrono::Sunday[chrono::last];
// デフォルトフォーマットはoperator<<と同じ
std::cout << std::format("1 : {}", date) << std::endl;
std::cout << std::format("2 : {:%B, %A}", date) << std::endl;
std::cout << std::format("3 : {:%m, %a}", date) << std::endl;
// ロケール依存の出力
std::cout << std::format(std::locale("ja_JP.UTF-8"), "4 : {:%b, %a}", date) << std::endl;
std::cout << std::format(std::locale("ja_JP.UTF-8"), "5 : {:%b, %A}", date) << std::endl;
}
- std::format[link /reference/chrono/format.md]
- std::locale[link /reference/locale/locale.md]
- chrono::March[link /reference/chrono/month_constants.md]
- chrono::last[link /reference/chrono/last_spec.md]
1 : Mar/Sun[1]
2 : March, Sunday
3 : 03, Sun
4 : 3月, 日
4 : 3月, 日曜日
- C++20
- Clang: 9.0 [mark noimpl]
- GCC: 9.2 [mark noimpl]
- Visual C++: 2019 Update 3 [mark noimpl]
- chronoの
std::format()
(フォーマットの詳細)