Linux学习之进度条设计progressBar

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Linux学习之进度条设计progressBar相关的知识,希望对你有一定的参考价值。

进度条即计算机在处理任务时,实时的,以图片形式显示处理任务的速度,完成度,剩余未完成任务量的大小,和可能需要处理时间,一般以长方形条状显示。

  #include<stdio.h>

  #include<stdlib.h>

  void progressBar()

 {

      char buffer[21]={0};

      int count=0;

      int i=5;

      while(count!=20)

     {

         i=5;

         while(i--)

             buffer[count++]=‘#‘;

         printf("%-20s[%d%][100%]\n",buffer,count*100/20);

         sleep(1);//usleep(1000)

         system("clear");//fflush(stdout);

     } 

 }

 int main()

 {

     progressBar();

     return 0;

 }

技术分享

本文出自 “小止” 博客,请务必保留此出处http://10541556.blog.51cto.com/10531556/1759616

以上是关于Linux学习之进度条设计progressBar的主要内容,如果未能解决你的问题,请参考以下文章

自定义View学习之12/7(进度条之混合模式)

Material Design学习之 ProgreesBar

Material Design学习之 ProgreesBar

linux学习之进程篇

Material Design学习之 Sliders(详细分析,悬空气球显示进度值,附带Eclipse可以jar)

Python学习之八设计模式和异常