C++ 控制台代码输出控制

2020-11-27 07:25

阅读:508

标签:ext   color   get   set   line   window   

在C++控制台应用程序中可以控制控制台输出的字体颜色和 接受任意按键退出

 

#ifndef CONSOLE_UTILS_H

#define CONSOLE_UTILS_H

#include

#include

#include

//default text colors can be found in wincon.h

inline void SetTextColor(WORD colors) {  

    HANDLE hConsole=GetStdHandle(STD_OUTPUT_HANDLE);

    SetConsoleTextAttribute(hConsole, colors);

}

inline void PressAnyKeyToContinue() {  

   //change text color to white  

  SetTextColor(FOREGROUND_BLUE| FOREGROUND_RED | FOREGROUND_GREEN);

   std::cout

   while (!_kbhit()){}

   return;

}

#endif

 

 

C++ 控制台代码输出控制,搜素材,soscw.com

C++ 控制台代码输出控制

标签:ext   color   get   set   line   window   

原文地址:http://www.cnblogs.com/ruiying/p/3703320.html


评论


亲,登录后才可以留言!