首页 > 编程语言 > 详细

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

时间:2014-05-02 00:23:12      阅读:503      评论:0      收藏:0      [点我收藏+]

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

 

#ifndef CONSOLE_UTILS_H

#define CONSOLE_UTILS_H

#include <windows.h>

#include <conio.h>

#include <iostream>

//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 << "\n\nPress any key to continue" << std::endl;

   while (!_kbhit()){}

   return;

}

#endif

 

 

C++ 控制台代码输出控制,布布扣,bubuko.com

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

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

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