C++實現日期轉換類DateTime


概述

工作中我們在網絡傳輸時使用time_t來傳輸時間,在顯示時使用字符串來顯示,下面是一個日期轉換類的實現,方便以后使用:

// DateTime.hpp
#ifndef _DATETIME_H
#define _DATETIME_H

#include <ctime>
#include <string>
#include <type_traits>

class DateTime
{
public:
    template<typename T>
    static typename std::enable_if<std::is_same<std::string, T>::value, std::string>::type convert(time_t t)
    {
        return time2string(t);
    }

    template<typename T>
    static typename std::enable_if<std::is_same<time_t, T>::value, time_t>::type convert(const std::string& timeStr)
    {
        return string2time(timeStr);
    }

    static std::string currentTime()
    {
        return time2string(time(nullptr));
    }

private:
    static std::string time2string(time_t t)
    {
        struct tm* tmNow = localtime(&t);
        char timeStr[sizeof("yyyy-mm-dd hh:mm:ss")] = {'\0'};
        std::strftime(timeStr, sizeof(timeStr), "%Y-%m-%d %H:%M:%S", tmNow);
        return timeStr;
    }
    
    static time_t string2time(const std::string& timeStr)
    {
        struct tm stTm;
        sscanf(timeStr.c_str(), "%d-%d-%d %d:%d:%d",
               &(stTm.tm_year),
               &(stTm.tm_mon),
               &(stTm.tm_mday),
               &(stTm.tm_hour),
               &(stTm.tm_min),
               &(stTm.tm_sec));

        stTm.tm_year -= 1900;
        stTm.tm_mon--;
        stTm.tm_isdst = -1;

        return mktime(&stTm);
    }
};

#endif

下面是DateTime的具體使用例子:

// main.cpp
#include <iostream>
#include "DateTime.hpp"

int main()
{
    std::string timeStr = DateTime::convert<std::string>(time(nullptr));
    std::cout << timeStr << std::endl;
    std::cout << DateTime::convert<time_t>(timeStr) << std::endl;
    std::cout << DateTime::currentTime() << std::endl << std::endl;

    return 0;
}

該例子的github地址:https://github.com/chxuan/samples/tree/master/DateTime


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM