localtime和gmtime函数使用

#include <stdio.h>
#include <stdlib.h>
#include <time.h>
int main(void)
{   
    time_t timep;
    struct tm *tm_local,*tm_gmt;

    //get calendar time
    time(&timep);
    printf("%d\n",timep );

    //convert to local time
    tm_local=localtime(&timep);

    //convert to gmt time
    tm_gmt=gmtime(&timep);

    printf("%s\n", asctime(tm_local));
    printf("%s\n", asctime(tm_gmt));
    printf("tmlocal point to 0X%x\n",tm_local);
    printf("tmgmt point to 0X%x\n",tm_gmt);

    return 0;
}

大致介绍一下
先获取日历时间(从1970到现在的走的秒数)
然后将这个时间转换为本地时间和格林威治时间
然后打印两个时间
这里写图片描述
打印的时间是一样的

why?打印两个指针指向的内存地址,发现也是一样的,也就是说他俩用的一块内存。那么他是如何实现的呢?

Return Value
A pointer to a tm structure with the time information filled in.

This structure is statically allocated and shared by the functions gmtime and localtime. Each time either one of these functions is called the contents of this structure is overwritten.
“`
意思就是这块内存是静态分配的,两个函数共享使用。
那么他是在那里得到分配呢?
全局变量还是其它?

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值