本方法可以应用到以C++为基础的编程软件当中,如VS、QT。
1、首先引入相应的包文件。
#include <stdlib.h>
#include<string.h>
using namespace std;
2、编写相应的cmd参数。
string command = "cmd";
system(command.c_str());
3、另外一种方式
char command[4] = "cmd";
system(command);
使用string的主要原因就是其字符串拼接简单,方便配置参数;使用using namespace std;的主要作用就是方便编写程序,否则就要使用std::string 定义字符串了。