私は次のコードを持っていますが、私がやりたいことを宣言的な方法で行うのに苦労しています。
現在の時刻をミリ秒の精度で出力したいと思います (切り捨ても問題ありません。たとえば、129999 を 129 ミリ秒に丸めることができますが、この場合は 130 を好みます)。
注:<format>
ヘッダーがまだ実装されていないため、fmtを使用しています。
#include<string>
#include<chrono>
#include<iostream>
#include<thread>
#include<fmt/format.h>
#include<fmt/chrono.h>
using namespace std::chrono;
int main(){
for (int i =0; i<5;++i){
// I wish this was local_time, not sys time, and that sys_time<milliseconds> worked
const std::chrono::sys_time<nanoseconds> now =
(std::chrono::system_clock::now());
auto round_now = std::chrono::round<milliseconds>(now);
int64_t ms = (round_now.time_since_epoch()%seconds(1)).count();
// %S does not print milliseconds
std::cout << fmt::format("{:%F %H:%M:%S}.{:03}", now, ms) << std::endl;
std::cout << std::endl;
std::this_thread::sleep_for(milliseconds(100));
}
std::cout << "Bye";
}