我正在创建一个RFC3339时间戳,包括毫秒和 UTC,在 C++ 中使用std::chrono
如下:
#include <chrono>
#include <ctime>
#include <iomanip>
using namespace std;
using namespace std::chrono;
string now_rfc3339() {
const auto now = system_clock::now();
const auto millis = duration_cast<milliseconds>(now.time_since_epoch()).count() % 1000;
const auto c_now = system_clock::to_time_t(now);
stringstream ss;
ss << put_time(gmtime(&c_now), "%FT%T") <<
'.' << setfill('0') << setw(3) << millis << 'Z';
return ss.str();
}
// output like 2019-01-23T10:18:32.079Z
(原谅using
s)
有没有更直接的方法来获取毫秒数now
?%1000
以now
毫秒为单位到达那里似乎有些麻烦。或者关于如何做到这一点更惯用的任何其他评论?