其他分享
首页 > 其他分享> > 在控制台固定位置显示动态数据, 如时间,进度等

在控制台固定位置显示动态数据, 如时间,进度等

作者:互联网

主要用到的关键api有两个:

1. GetConsoleScreenBufferInfo

用来获取当前光标位置

2. SetConsoleCursorPosition

用来设置控制台光标位置

 

示例代码:

#define _AFXDLL

#include <afx.h> 

#include <iostream> 

using namespace std;

int main()
{
    for (int i = 0; i < 10; i++) {
        printf("*print something*\n");
    }
    cout << "show current time: " << endl;
    HANDLE hConsole = GetStdHandle(STD_OUTPUT_HANDLE);
    CONSOLE_SCREEN_BUFFER_INFO consoleScreenBufferInfo;
    GetConsoleScreenBufferInfo(hConsole, &consoleScreenBufferInfo);
    SHORT x = consoleScreenBufferInfo.dwCursorPosition.X;
    SHORT y = consoleScreenBufferInfo.dwCursorPosition.Y;
    COORD coordScreen = {x, y};
    CTime tm = 0;
    int sec = 0;
    int span = 10;
    while (1)
    {
        tm = CTime::GetCurrentTime();
        if (sec != tm.GetSecond()){
            if (span <= 0) {
                break;
            }
            span--;
            sec = tm.GetSecond();
            SetConsoleCursorPosition(hConsole, coordScreen);
            printf("%04d-%02d-%02d %02d:%02d:%02d\n", 
                tm.GetYear(), tm.GetMonth(), tm.GetDay(), 
                tm.GetHour(), tm.GetMinute(), tm.GetSecond());
        }
    }
    cout << "end" << endl;
    return 0;
}

 

标签:动态数据,int,位置,进度,控制台,include,光标,用来
来源: https://www.cnblogs.com/endenvor/p/16459342.html