如何将连接字符串参数传递给system()函数?

时间:2013-01-07 14:45:50

标签: c++ gcc g++

如何将连接字符串参数传递给system()函数?

  • 我正在使用GCC 4.5.2
  • 我必须在std::string中执行shell并写入其输出 到外部文件。
  • 我使用system()函数来执行此任务。

我无法执行此函数,因为我只能传递char*个参数而没有std::string个参数。

这是我的代码..

#include<iostream>
#include<fstream>
#include<stdio.h>
#include<stdlib.h>

using namespace std;

void getch()
   {
   int c;
   fflush(stdout);
   while ((c = getchar()) != '\n' && c!= EOF) { /* Do Nothing */ }
   }

int main()
{
string optTechniques[] = {
        "-fauto-inc-dec", "-fcprop-registers", "-fdce",
        "-fdefer-pop", "-fdelayed-branch", "-fdse",
        ........,   .....,  ......
         }
string str;
str="gcc -Wall "+optTechniques[i]+" -o output";
cout<<"\n"<<str<<"\n";  /* Here it prints correctly */
system(str);    /* This is generating error. */
string val;
system("sh execTime.sh");

ifstream readFile("output.log");
readFile>>val;  /* Works perfectly if execution is done. */
float execTime=strtof(val.c_str(),NULL);    /* Converts the string to float */

getch();

cout<<"\nExecution Time: "<<execTime<<"\tTechnique: "<<optTechniques[i]<<"\n";
return 0;
}

更新: 谢谢。我有答案。

1 个答案:

答案 0 :(得分:4)

使用c_str获取字符串中的字符指针:。

system(str.c_str());