真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

linux下c++怎么實現(xiàn)string與time_t互相轉(zhuǎn)換

這篇文章主要介紹了linux下c++怎么實現(xiàn)string與time_t互相轉(zhuǎn)換的相關(guān)知識,內(nèi)容詳細易懂,操作簡單快捷,具有一定借鑒價值,相信大家閱讀完這篇linux下c++怎么實現(xiàn)string與time_t互相轉(zhuǎn)換文章都會有所收獲,下面我們一起來看看吧。

鐘樓網(wǎng)站建設(shè)公司創(chuàng)新互聯(lián)公司,鐘樓網(wǎng)站設(shè)計制作,有大型網(wǎng)站制作公司豐富經(jīng)驗。已為鐘樓近千家提供企業(yè)網(wǎng)站建設(shè)服務(wù)。企業(yè)網(wǎng)站搭建\成都外貿(mào)網(wǎng)站建設(shè)公司要多少錢,請找那個售后服務(wù)好的鐘樓做網(wǎng)站的公司定做!

代碼如下:

#include 
#include 
#include 
using namespace std;

time_t string2time_t(const string string_time);
string time_t2string(const time_t time_t_time);
int main()
{
    string strTime = "2014/03/28 18:25:26";
    time_t time1 = string2time_t(strTime);
    cout<tm_year += 1900;
    pTm->tm_mon +=1;

    sprintf_s(szTime, "%04d/%02d/%02d %02d:%02d:%02d",
        pTm->tm_year,
        pTm->tm_mon,
        pTm->tm_mday,
        pTm->tm_hour,
        pTm->tm_min,
        pTm->tm_sec);

    string strTime = szTime;

    delete pTm;
    pTm = NULL;

    return strTime;
}
string get_time()
{
	string timeStr;
	//time_t t = time(0);
	time_t t = time(NULL);
	char tmp[64];
	strftime( tmp, sizeof(tmp), "%Y-%m-%d %X ",localtime(&t) );// 2017-05-16 17:00:00
 
	timeStr = tmp;
	return timeStr;
}
time_t convert_string_to_time_t(const std::string & time_string)
{
	struct tm tm1;
	time_t time1;
	sscanf(time_string.c_str(), "%d-%d-%d %d:%d:%d" ,
				&(tm1.tm_year),
				&(tm1.tm_mon),
				&(tm1.tm_mday),
				&(tm1.tm_hour),
				&(tm1.tm_min),
				&(tm1.tm_sec));
 
	tm1.tm_year -= 1900;
	tm1.tm_mon --;
	tm1.tm_isdst=-1;
	time1 = mktime(&tm1);
 
	return time1;
}

關(guān)于“l(fā)inux下c++怎么實現(xiàn)string與time_t互相轉(zhuǎn)換”這篇文章的內(nèi)容就介紹到這里,感謝各位的閱讀!相信大家對“l(fā)inux下c++怎么實現(xiàn)string與time_t互相轉(zhuǎn)換”知識都有一定的了解,大家如果還想學(xué)習更多知識,歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道。


網(wǎng)站題目:linux下c++怎么實現(xiàn)string與time_t互相轉(zhuǎn)換
網(wǎng)頁鏈接:http://weahome.cn/article/godesh.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部