我正在使用Visual C ++ / CLR在控制台模式下进行项目。
如何以微秒为单位获得系统时钟?
我想显示hours:minutes:seconds:microseconds
以下程序运行良好但与其他平台不兼容:
#include <stdio.h>
#include <sys/time.h>
int main()
{
struct timeval tv;
struct timezone tz;
struct tm *tm;
gettimeofday(&tv, &tz);
tm=localtime(&tv.tv_sec);
printf(" %d:%02d:%02d %ld \n", tm->tm_hour, tm->tm_min,tm->tm_sec, tv.tv_usec);
return 0;
}
答案 0 :(得分:1)
您可以使用Boost中的ptime microsec_clock::local_time()
。
文档可用here。
之后,您可以使用std::string to_iso_extended_string(ptime)
将返回的时间显示为字符串,也可以直接使用ptime
的成员来自行格式化输出。
Win32系统通常无法通过此API实现微秒级分辨率。如果更高的分辨率对您的应用程序至关重要,请测试您的平台以查看已达到的分辨率。
所以我想这取决于你需要“时钟”的准确程度。
答案 1 :(得分:0)
我按照你的指示编写了这段代码==&gt;它100%工作
#include <iostream>
#include "boost/date_time/posix_time/posix_time.hpp"
typedef boost::posix_time::ptime Time;
int main (){
int i;
Time t1;
for (int i=0;i<1000;i++)
{
t1=boost::posix_time::microsec_clock::local_time();
std::cout << to_iso_extended_string(t1) << "\n";
}
return 0;
}