(1)timer库的介绍(2)

(三)progress_display类
   progress_display可以在控制台上显示程序的执行进度。位于boost命名空间下,使用时加入头文件:#include <boost/progress.hpp>即可。

  它是一个独立的类,与timer和progress_timer没有联系。

#include <iostream>
#include <boost/progress.hpp>

int main(int argc,char * argv[]){
    //声明基数大小为100
    boost::progress_display pd(100);
    for(int i=0;i<100;i++){
        ++pd;
    }
   
    return 0;
}

(1)timer库的介绍

Ubuntu下编译安装boost库

Ubuntu下编译boost 1.52b

VS2008下直接安装使用Boost库1.46.1版本

Ubuntu编译安装boost并在eclipse C/C++中使用

Boost 的详细介绍请点这里
Boost 的下载地址请点这里

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/62b4fad5cbcdf05dd0a96b334ec8c4a6.html