码迷,mamicode.com
首页 > 其他好文 > 详细

boost::timer库使用

时间:2018-06-07 19:29:52      阅读:144      评论:0      收藏:0      [点我收藏+]

标签:nan   需要   style   系统   color   boost   内核   nbsp   结构体   

boost::timer boost库定时器使用,需要在编译时加相关链接库 -lboost_timer -lboost_system

 

boost::timer::cpu_timer 和boost::timer::auto_cpu_timer用于精确定时,有start(),elapsed(),is_stopped()等方法,elapsed()方法返回的时结构体boost::timer::cpu_times

struct cpu_times
{
//时间单位都为ns nanosecond_type wall;   //程序运行实际时间 nanosecond_type user;  //用户层cpu时间 nanosecond_type system;  //内核系统cpu时间
void clear() {wall = user = system = 0LL; } };

 

boost::timer库使用

标签:nan   需要   style   系统   color   boost   内核   nbsp   结构体   

原文地址:https://www.cnblogs.com/dj0325/p/9151907.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!