C++ 取得系统当前时间
方法一,只能精确到秒#include <time.h> time_t tt = time(NULL); 这句返回的只是一个时间戳 tm* t= localtime(&tt); printf("%d...
技术 咨询
留言 反馈