C++中时间串与Unix时间之间的相互转换

1. UNIX时间戳转成时间字符串函数

// Unixtime2Str.cpp
#include <iostream>
#include <time.h>
void gettimestr(time_t& time, tm* lotime,char* buf)
{
    lotime = localtime(&time);
    strftime(buf, 64, "%Y:%m:%d %H:%M:%S", lotime);
}
int main()
{
        time_t t;  //秒时间  
        tm* local; //本地时间   
        char buf[128]= {0};  
        t = time(NULL); //获取目前秒时间  
        gettimestr(t,local,buf);
        std::cout << buf << std::endl;  
} 

2.时间字符串转成UNIX时间戳

#include <iostream>
#include <ctime>
#include <string.h>
using namespace std;
 
time_t strTime2unix(const char timeStamp[])
{
    struct tm tm; 
    memset(&tm, 0, sizeof(tm));
    sscanf(timeStamp, "%d:%d:%d %d:%d:%d", &tm.tm_year, &tm.tm_mon, &tm.tm_mday,&tm.tm_hour, &tm.tm_min, &tm.tm_sec);
    tm.tm_year -= 1900;
    tm.tm_mon--;
    return mktime(&tm);
}
 
int main()
{
    const  char timeStamp[100] = "2022:10:03 22:41:40";
    time_t t = strTime2unix(timeStamp);
    cout << t << endl;
    return 0;
}

 

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值