system()
Posted atoman
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了system()相关的知识,希望对你有一定的参考价值。
system()—执行shell命令也就是像dos发送一条指令。
相关函数:fork, execve, waitpid, popen
头文件:#include <stdlib.h>
定义函数:int system(const char * string);
system("pause")可以实现冻结屏幕,便于观察程序的执行结果;system("CLS")可以实现清屏操作。而调用color函数可以改变控制台的前景色和背景,具体参数在下面说明。
例如,用 system("color 0A"); 其中color后面的0是背景色代号,A是前景色代号。各颜色代码如下:
0=黑色 1=蓝色 2=绿色 3=湖蓝色 4=红色 5=紫色 6=黄色 7=白色 8=灰色 9=淡蓝色 A=淡绿色 B=淡浅绿色 C=淡红色 D=淡紫色 E=淡黄色 F=亮白色
以上是关于system()的主要内容,如果未能解决你的问题,请参考以下文章
获取 System.Collections.Generic.List1[System.Collections.Generic.KeyValuePair2[System.Int32,System.Str
System.TypeLoadException:“无法从程序集“System.Web”加载类型“System.Web.HttpContextBase”,
java中System.out.print()与System.out.println()与System.out.printf()的差别
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.
从 System.Collections.Generic.Dictionary`2[System.Object,System.Object] 读取数据