#include <iostream>
#include <sys/time.h>
#include <stdint.h>
void convert(uint64_t offset )
{
struct timeval t;
t.tv_sec = offset / 1000000;
std::cout << "currentTimeOffset " << offset << "startTimeOffset " << t.tv_sec << std::endl;
t.tv_usec = offset % 1000000;
std::cout << "stattime usec " << t.tv_usec << std::endl ;
}
int main(int argc , char** argv)
{
uint64_t t = 18446744073709551615;
convert(t );
return 0;
}
是否存在舍入误差?那我该怎么做呢?这是从代码转换的其他地方调用的例程。我写了一个小脚本,其中有一个uint64_t
给我一个负数的例子