namespace std::chrono {
const time_zone* current_zone();
}
概要
現在のタイムゾーンを取得する。
この関数は、そのコンピュータに設定されているローカルタイムゾーンへのポインタを返す。
戻り値
return get_tzdb().current_zone();
備考
- WindowsおよびLinux系OSでは、環境変数
TZ
に設定されたタイムゾーンが返される
例
#include <iostream>
#include <chrono>
namespace chrono = std::chrono;
int main()
{
const chrono::time_zone* tz = chrono::current_zone();
std::cout << tz->name() << std::endl;
}
11
#include <iostream>
#include <chrono>
namespace chrono = std::chrono;
int main()
{
const chrono::time_zone* tz = chrono::current_zone();
std::cout << tz->name() << std::endl;
}
出力例
Asia/Tokyo
バージョン
言語
- C++20
処理系
- Clang: 9.0 ❌
- GCC: 9.2 ❌
- Visual C++: 2019 Update 3 ❌