91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

利用boost獲取時間并格式化的方法

發布時間:2020-10-16 17:53:15 來源:腳本之家 閱讀:327 作者:jingxian 欄目:編程語言

利用boost來獲取當前時間又方便快捷,還不用考慮跨平臺的問題。

1.   輸出YYYYMMDD

#include <boost/date_time/gregorian/gregorian.hpp> 
#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 <boost/date_time/posix_time/posix_time.hpp> 
#define BOOST_DATE_TIME_SOURCE 
   
std::string strTime = boost::posix_time::to_iso_string(\ 
boost::posix_time::second_clock::local_time()); 
   
// 這時候strTime里存放時間的格式是YYYYMMDDTHHMMSS,日期和時間用大寫字母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.   計算時間間隔。boost里計算時間間隔的功能很多很強大,我列舉的僅僅是我目前用到的。

#include <boost/date_time/posix_time/posix_time.hpp> 
#include <boost/thread.hpp> 
#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個時間的ticket值的差,以微秒為單位; 
int ticks = time_elapse.ticks(); 
 
// 得到兩個時間間隔的秒數; 
int sec = time_elapse.total_seconds(); 

以上這篇利用boost獲取時間并格式化的方法就是小編分享給大家的全部內容了,希望能給大家一個參考,也希望大家多多支持億速云。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

天峨县| 财经| 巴林右旗| 巴林左旗| 永康市| 常德市| 耒阳市| 栖霞市| 大田县| 府谷县| 新郑市| 奇台县| 东平县| 天镇县| 马山县| 石景山区| 区。| 垦利县| 伊川县| 永善县| 白城市| 陇西县| 彰化市| 吴桥县| 文昌市| 阳朔县| 沈丘县| 平武县| 德保县| 荥阳市| 高淳县| 调兵山市| 伊川县| 巴彦县| 乌兰察布市| 邛崃市| 那曲县| 永顺县| 讷河市| 贡觉县| 丰顺县|