C++获取当前系统时间(ms)

 long getCurTimestamp() 
 {
    struct timeval        tv;
    
    gettimeofday( &tv, NULL );
    
    long timestamp = tv.tv_sec * 1000 + tv.tv_usec/1000;
    
    return timestamp;
}

你可能感兴趣的:(c++)