我想在嵌入式系统上添加时间戳到传感器测量值(运行ArchLinux的Raspberry Pi A +)。我从time
找到time.h
,但它给了我“第二”分辨率,我至少需要“毫秒”。
系统会运行几个小时,我不担心长时间的漂移。
我怎样才能在C ++中获得它?
答案 0 :(得分:5)
如果您有C++11
,可以像这样使用<chrono>
和<ctime>
库:
#include <ctime>
#include <string>
#include <chrono>
#include <sstream>
#include <iomanip>
#include <iostream>
// use strftime to format time_t into a "date time"
std::string date_time(std::time_t posix)
{
char buf[20]; // big enough for 2015-07-08 10:06:51\0
std::tm tp = *std::localtime(&posix);
return {buf, std::strftime(buf, sizeof(buf), "%F %T", &tp)};
}
std::string stamp()
{
using namespace std;
using namespace std::chrono;
// get absolute wall time
auto now = system_clock::now();
// find the number of milliseconds
auto ms = duration_cast<milliseconds>(now.time_since_epoch()) % 1000;
// build output string
std::ostringstream oss;
oss.fill('0');
// convert absolute time to time_t seconds
// and convert to "date time"
oss << date_time(system_clock::to_time_t(now));
oss << '.' << setw(3) << ms.count();
return oss.str();
}
int main()
{
std::cout << stamp() << '\n';
}
<强>输出:强>
2015-07-08 10:13:29.930
注意:强>
如果您想要更高的分辨率,可以使用microseconds
,如下所示:
std::string stamp()
{
using namespace std;
using namespace std::chrono;
auto now = system_clock::now();
// use microseconds % 1000000 now
auto us = duration_cast<microseconds>(now.time_since_epoch()) % 1000000;
std::ostringstream oss;
oss.fill('0');
oss << date_time(system_clock::to_time_t(now));
oss << '.' << setw(6) << us.count();
return oss.str();
}
输出
2015-07-08 10:20:39.454163
答案 1 :(得分:0)
C ++ 11 chrono头文件中有许多功能,请参阅此链接