首页 > 代码库 > localtime和localtime_r的差别
localtime和localtime_r的差别
#include <cstdlib>
#include <iostream>
#include <time.h>
#include <stdio.h>
using namespace std;
int main(int argc, char *argv[])
{
time_t tNow =time(NULL);
time_t tEnd = tNow + 2500;
//在这里修改程序
//struct tm* ptm = localtime(&tNow);
//struct tm* ptmEnd = localtime(&tEnd);
struct tm* ptm = new struct tm[sizeof(struct tm)];
struct tm* ptmEnd = new struct tm[sizeof(struct tm)];
localtime_r(&tNow, ptm);
localtime_r(&tEnd, ptmEnd);
char szTmp[50] = {0};
strftime(szTmp,50,"%H:%M:%S",ptm);
char szEnd[50] = {0};
strftime(szEnd,50,"%H:%M:%S",ptmEnd);
printf("%s \n",szTmp);
printf("%s \n",szEnd);
system("PAUSE");
return 0;
}
localtime和localtime_r的差别
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。