頭文件
公司專注于為企業(yè)提供網(wǎng)站設(shè)計(jì)、成都網(wǎng)站建設(shè)、微信公眾號(hào)開(kāi)發(fā)、商城開(kāi)發(fā),微信小程序,軟件按需網(wǎng)站建設(shè)等一站式互聯(lián)網(wǎng)企業(yè)服務(wù)。憑借多年豐富的經(jīng)驗(yàn),我們會(huì)仔細(xì)了解各客戶的需求而做出多方面的分析、設(shè)計(jì)、整合,為客戶設(shè)計(jì)出具風(fēng)格及創(chuàng)意性的商業(yè)解決方案,創(chuàng)新互聯(lián)更提供一系列網(wǎng)站制作和網(wǎng)站推廣的服務(wù)。
#include
代碼
?std::string strDateTime = boost::posix_time::to_simple_string(boost::posix_time::microsec_clock::local_time());
結(jié)果:2020-Jan-07 02:54:29.985437
?std::string strTime = boost::posix_time::to_iso_string(boost::posix_time::microsec_clock::local_time());
?strTime.insert(4, "-");
?strTime.insert(7, "-");
?int pos = strTime.find('T');
?strTime.replace(pos, 1, std::string(" "));
?strTime.insert(13, ":");
?strTime.insert(16, ":");
?結(jié)果:2020-01-07 10:54:29.976652