在 Java 中,我们可以使用 System.currentTimeMillis()
以毫秒为单位获得自纪元时间以来的当前时间戳,即-
当前时间和 世界协调时1970年1月1日午夜。
在 C + + 中如何得到相同的东西?
目前,我正在使用它来获取当前的时间戳-
struct timeval tp;
gettimeofday(&tp, NULL);
long int ms = tp.tv_sec * 1000 + tp.tv_usec / 1000; //get current timestamp in milliseconds
cout << ms << endl;
这看起来对不对?