android NDK currentTimeMillis

2019-06-04  本文已影响0人  MacLi

Returns the current time in milliseconds

long currentTimeMillis() {
    struct timeval tv;
    gettimeofday(&tv,NULL);
    return tv.tv_sec * 1000 + tv.tv_usec / 1000;
}
上一篇 下一篇

猜你喜欢

热点阅读