Boost–progress_timer

简介:

progress_timer继承自timer,但是精度为2,为了扩展精度,我们自己实现一个类,代码如下:

#include <iostream>
#include<boost/progress.hpp>
#include <boost/static_assert.hpp>
using namespace std;
using namespace boost;


template<int N=2>
class new_progress_timer :public timer{
public:
	new_progress_timer(ostream &os=cout):m_os(os){
		
		BOOST_STATIC_ASSERT(N>=0&&NULL<=10);
	}
	~new_progress_timer(){

		try{
			istream::fmtflags old_flags=m_os.setf(istream::fixed,istream::floatfield);
			streamsize old_prec=m_os.precision(N);

			//输出时间
			m_os<<elapsed()<<"s\n"<<endl;

			//恢复流的状态
			m_os.flags(old_flags);
			m_os.precision(old_prec);
		}catch(...){
			//do nothing
		}
	}
private: 
	ostream &m_os;
};

int _tmain(int argc, _TCHAR* argv[])
{	
	new_progress_timer<10> t;

	//cout<<t.elapsed(); 这里不需要亲自调用,当超过t的作用域的时候自动调用
	return 0;
}

image


==============================================================================
本文转自被遗忘的博客园博客,原文链接:http://www.cnblogs.com/rollenholt/archive/2012/03/26/2418275.html,如需转载请自行联系原作者
相关文章
|
2月前
|
编解码 安全 Linux
Clock sources, Clock events, sched_clock() and delay timers【ChatGPT】
Clock sources, Clock events, sched_clock() and delay timers【ChatGPT】
|
6月前
|
Go
Go 定时器:Timer 和 Ticker
本文深入探讨了 Go 语言中的 Timer 和 Ticker 定时器,详细介绍了它们的创建方式、基本用法以及相关的方法等。此外,文章还概括了这两个定时器之间的主要区别,并强调了在使用过程中的注意事项。
150 2
Go 定时器:Timer 和 Ticker
|
11月前
|
前端开发
The following tasks did not complete: first Did you forget to signal async completion?
The following tasks did not complete: first Did you forget to signal async completion?
|
内存技术
Egret的TimerEvent.TIMER和Event.ENTER_FRAME的区别
Egret的TimerEvent.TIMER和Event.ENTER_FRAME的区别
72 0
|
PHP
swoole,swoole_timer_tick() must be callable, array given 报错异常
easyswoole框架内部交流后也说明这个问题是由于swoole版本变动,很早以前就在新版做了兼容(将intervalCheck改为public方法)
187 0
RxJava/RxAndroid:timer(long delay, TimeUnit unit)
RxJava/RxAndroid:timer(long delay, TimeUnit unit) timer起到定时器的作用,本例使用timer延迟3秒执行一个输出任务: package com.
1376 0
RxJava/RxAndroid:ConnectableObservable &amp; replay(int bufferSize, long time, TimeUnit unit)
RxJava/RxAndroid:ConnectableObservable & replay(int bufferSize, long time, TimeUnit unit) import android.
1062 0
|
Android开发
RxJava/RxAndroid:ConnectableObservable &amp; replay(long time, TimeUnit unit)
RxJava/RxAndroid:ConnectableObservable & replay(long time, TimeUnit unit) import android.
1094 0