0
#include <ctime>
#include <cstdio>
#include <sys/time.h>
#include <iostream>
using namespace std;

int main() {
    struct timeval tv;
    gettimeofday(&tv, 0);
    unsigned long long int var=tv.tv_sec*1000L+tv.tv_usec/1000L;
    cout<<sizeof(var)<<endl;
    cout<<var<<endl;
    printf("%u%-15u\n", (unsigned int)(var/1000000000), (unsigned int)(var%1000000000));
    return 0;
}

这东西打印

8
1341143123970
1341143123970      

在我的 64 位机器上,但是

8
1113191712
1113191712      

在我的 32 位服务器上。第二个结果显然被限制为 32 位数字,但 unsigned long long int 在两种架构上都是 8 字节。那么夹紧发生在哪里,为什么?

4

1 回答 1

4

long这是因为32 位和 64 位机器上的宽度不一样。的类型tv_sec是算术类型,通常是1) long

您可以确保使用 64 位类型来完成乘法,1000ULL而不是1000L

unsigned long long int var=tv.tv_sec*1000ULL+tv.tv_usec/1000ULL;


1)glibc例如,它是long"In the GNU C library, time_t is equivalent to long int" http://www.gnu.org/software/libc/manual/html_node/Simple-Calendar-Time.html

于 2012-07-01T11:51:51.657 回答