我正在开发一个在控制台模式下使用 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;
}