首页 > 其他 > 详细

boost获取系统时间(毫秒级)

时间:2014-02-22 16:21:40      阅读:1087      评论:0      收藏:0      [点我收藏+]

在c++的chrono中没有找到相应的实现,只好从boost里面找了,代码如下:

bubuko.com,布布扣
#include<boost/date_time/posix_time/posix_time.hpp>

//
Get current time from the clock, using microseconds resolution const boost::posix_time::ptime now = boost::posix_time::microsec_clock::local_time(); // Get the time offset in current day const boost::posix_time::time_duration td = now.time_of_day(); frame.h = td.hours(); frame.m = td.minutes(); frame.s = td.seconds(); frame.ms = td.total_milliseconds() - ((frame.h * 3600 + frame.m * 60 + frame.s) * 1000);
bubuko.com,布布扣

boost获取系统时间(毫秒级)

原文:http://www.cnblogs.com/run220/p/3560401.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!