首页 > 其他 > 详细

localtime和localtime_r的差别

时间:2014-12-19 15:59:42      阅读:259      评论:0      收藏:0      [点我收藏+]

#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的差别

原文:http://my.oschina.net/u/923534/blog/358033

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!