首页 > 系统服务 > 详细

Linux终端刷新显示

时间:2020-08-27 18:32:29      阅读:265      评论:0      收藏:0      [点我收藏+]
void CStat::runtimePrintBuf(std::vector<std::string> &buf){
    static int last_print_lines = 0;
    for(int i = 0; i < last_print_lines; ++i){
        printf("\033[1A"); //先回到上一行
        printf("\033[K");  //清除该行
    }
    last_print_lines = buf.size();

    for(const std::string &it : buf){
        printf("%s\n", it.c_str());
    }
}

Linux终端刷新显示

原文:https://www.cnblogs.com/delta1037/p/13572581.html

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