利用boost來獲取當(dāng)前時(shí)間又方便快捷,還不用考慮跨平臺(tái)的問題。
成都創(chuàng)新互聯(lián)公司專注為客戶提供全方位的互聯(lián)網(wǎng)綜合服務(wù),包含不限于成都網(wǎng)站建設(shè)、成都網(wǎng)站制作、猇亭網(wǎng)絡(luò)推廣、微信小程序開發(fā)、猇亭網(wǎng)絡(luò)營銷、猇亭企業(yè)策劃、猇亭品牌公關(guān)、搜索引擎seo、人物專訪、企業(yè)宣傳片、企業(yè)代運(yùn)營等,從售前售中售后,我們都將竭誠為您服務(wù),您的肯定,是我們最大的嘉獎(jiǎng);成都創(chuàng)新互聯(lián)公司為所有大學(xué)生創(chuàng)業(yè)者提供猇亭建站搭建服務(wù),24小時(shí)服務(wù)熱線:18980820575,官方網(wǎng)址:www.cdcxhl.com
1. 輸出YYYYMMDD
#include#define BOOST_DATE_TIME_SOURCE std::string strTime = boost::gregorian::to_iso_string(\ boost::gregorian::day_clock::local_day()); std::cout << strTime.c_str() << std::endl;
2. 輸出YYYYMMDD-HH:MM:SS
#include#define BOOST_DATE_TIME_SOURCE std::string strTime = boost::posix_time::to_iso_string(\ boost::posix_time::second_clock::local_time()); // 這時(shí)候strTime里存放時(shí)間的格式是YYYYMMDDTHHMMSS,日期和時(shí)間用大寫字母T隔開了 int pos = strTime.find('T'); strTime.replace(pos,1,std::string("-")); strTime.replace(pos + 3,0,std::string(":")); strTime.replace(pos + 6,0,std::string(":")); std::cout << strTime.c_str() << std::endl;
3. 計(jì)算時(shí)間間隔。boost里計(jì)算時(shí)間間隔的功能很多很強(qiáng)大,我列舉的僅僅是我目前用到的。
#include#include #define BOOST_DATE_TIME_SOURCE boost::posix_time::ptime time_now,time_now1; boost::posix_time::millisec_posix_time_system_config::time_duration_type time_elapse; // 這里為微秒為單位;這里可以將microsec_clock替換成second_clock以秒為單位; time_now = boost::posix_time::microsec_clock::universal_time(); // sleep 100毫秒; boost::this_thread::sleep(boost::posix_time::millisec(100)); time_now1 = boost::posix_time::microsec_clock::universal_time(); time_elapse = time_now1 - time_now; // 類似GetTickCount,只是這邊得到的是2個(gè)時(shí)間的ticket值的差,以微秒為單位; int ticks = time_elapse.ticks(); // 得到兩個(gè)時(shí)間間隔的秒數(shù); int sec = time_elapse.total_seconds();
以上這篇利用boost獲取時(shí)間并格式化的方法就是小編分享給大家的全部?jī)?nèi)容了,希望能給大家一個(gè)參考,也希望大家多多支持創(chuàng)新互聯(lián)。