4

timeval を使用して、1970 年 1 月 1 日 00:00:00 から現在までの秒数とマイクロ秒数を知るにはどうすればよいですか? ありがとう。

struct timeval {
  long tv_sec; /*seconds since 1/1/1970*/
  long tv_usec; /*microseconds since tv_sec*/
};
4

1 に答える 1

4

あなたが呼ぶgettimeofday()

struct timeval tv;
gettimeofday(&tv, NULL);
tv.tv_sec  /* seconds */
tv.tv_usec /* microseconds */

ただしgettimeofday()、廃止されたため、マニュアルでは代わりにclock_gettime(2)を推奨しています。

struct timespec tp;
clock_gettime(CLOCK_REALTIME, &tp);
tp.tv_sec  /* seconds */
tp.tv_usec /* nanoseconds divide by 1000 to get microseconds*/
于 2012-12-01T17:27:41.403 に答える