在Linux中,strftime
函数用于格式化时间戳
#include <stdio.h>
#include <time.h>
int main() {
time_t rawtime;
struct tm * timeinfo;
time(&rawtime); // 获取当前时间
timeinfo = localtime(&rawtime); // 将时间转换为本地时间
char buffer[20];
strftime(buffer, sizeof(buffer), "%Y-%m-%d %H:%M:%S.%3d", timeinfo); // 使用%3d格式化毫秒
printf("当前时间(带毫秒):%s\n", buffer);
return 0;
}
在这个示例中,我们使用%3d
来表示毫秒,其中3
表示宽度为3的字符,d
表示十进制整数。这将显示当前时间的格式化字符串,包括毫秒。