static time_point now() noexcept;
概要
現在日時を取得する
戻り値
現在日時を指すtime_point
。
例外
投げない
例
#include <iostream>
#include <chrono>
using namespace std::chrono;
int main()
{
high_resolution_clock::time_point p = high_resolution_clock::now();
seconds d = duration_cast<seconds>(p.time_since_epoch());
std::cout << d.count() << std::endl;
}
出力例
1317184255
バージョン
言語
- C++11
処理系
- GCC: 4.6.1 ✅
- Visual C++: 2012 ✅, 2013 ✅, 2015 ✅