需要用到这个函数:
int system ( const char * command ); (头文件为cstdlib)
Invokes the command processor to execute a command. Once the command execution has terminated, the processor gives the control back to the program, returning an int value, whose interpretation is system-dependent.
The function can also be used with NULL as argument to check whether a command processor exists.
Parameters
- command
- C string containing the system command to be executed.
常用函数:
:想要程序在某个地方停住使用system("PAUSE");就可以暂停;system("CLS");可以清屏;system("DIR C:");可以查询C盘;system("start regesit.exe");打开注册表;system("net user");查看本地用户组;
自己写一个setcolor函数:
void setcolor(unsigned int color) { if (color >15 || color <=0) { cout <<"Error" <<endl; } else { HANDLE hcon = GetStdHandle(STD_OUTPUT_HANDLE); SetConsoleTextAttribute(hcon,color); } }
这个函数会改变输出的文本颜色,This is for windows platform only.
注意要包含头文件<Windows.h>
转:
用vc++写console程序时,整天对着黑纸白字的屏幕,感觉很郁闷吧?很多人想用CONIO.H/GRAPHICS.H中的一些函数来实现,却发现VC++根本没有这些头文件。当然了CONIO.H/GRAPHICS.H是BORLAND
TC/BC专有的头文件,所以vc++中根本没有这些文件。把这两个头文件COPY过来,然后用??答案当然是否定的。其实VC++中也有相关的函数来实现console彩色文本及背景的显示。下面我们就看看VC++如何实现彩色文本。
在vc++用API函数GetStdHandle()和SetConsoleTextAttribute()来实现彩色背景及彩色文本。下面说一下这两个函数声明及其参数的含义。首先说GetStdHandle(),其声明如下
HANDLE GetStdHandle(
DWORD nStdHandle
);
GetStdHandle()返回标准的输入、输出或错误的设备的句柄,也就是获得输入、输出/错误的屏幕缓冲区的句柄。
其参数nStdHandle的值为下面几种类型的一种:
值 含义
STD_INPUT_HANDLE 标准输入的句柄
STD_OUTPUT_HANDLE 标准输出的句柄
STD_ERROR_HANDLE 标准错误的句柄
函数SetConsoleTextAttribute()的作用是在console程序设置输入或输出文本的文本颜色和背景颜色。只有在此函数设置后才能显示彩色的文本。其函数原型为:
BOOL SetConsoleTextAttribute(
HANDLE hConsoleOutput, // console 屏幕缓冲区的句柄
WORD wAttributes // 文本及背景的颜色
);
如果函数设置文本及背景颜色成功,则返回非零;如失败返回零。其参数含义如下:
hConsoleOutput------------- console 屏幕缓冲区的句柄。
WORD wAttributes-----------文本及背景的颜色。
其文本颜色可以是 FOREGROUND_BLUE,
FOREGROUND_GREEN, FOREGROUND_RED, FOREGROUND_INTENSITY,
背景颜色可以是BACKGROUND_BLUE,
BACKGROUND_GREEN, BACKGROUND_RED, and BACKGROUND_INTENSITY.
example:
#include <windows.h> //GetStdHandle和SetConsoleTextAttribute在头文件windows.h中 #include <iostream> using namespace std; void SetColor(unsigned short ForeColor=3,unsigned short BackGroundColor=0) //给参数默认值 { HANDLE hCon = GetStdHandle(STD_OUTPUT_HANDLE); // SetConsoleTextAttribute(hCon,ForeColor|BackGroundColor); }; int main() { SetColor(); std::cout<<"Hello world!"<<endl; SetColor(0,FOREGROUND_BLUE|FOREGROUND_RED); std::cout<<"Hello world!"<<endl; SetColor(0,6000); return 0; }
设置光标位置:
自己定义一个gotoxy(int x,int y)函数:
void gotoxy(int x,int y) //设置光标的位置
{
COORD c;
c.X=x-1;
c.Y=y-1;
SetConsoleCursorPosition(GetStdHandle(STD_OUTPUT_HANDLE),c);
}