如何将变量作为参数放入 system()
How to put variable as argument in system()
我正在尝试将 sleep 1
命令包含在我的 .cpp 文件 bash 中
虽然 system("sleep 1")
工作正常,但我想将 1
更改为 const int 或 string
const string t = "1";
string c = "sleep " + t;
system(c);
但是,似乎 system(c)
被视为对函数的调用,因为发生了以下错误:
error: no matching function for call to 'system'
system(c);
我该如何解决?
system(c.c_str())
或者,等效地(来自 C++11),system(c.data())
system
函数接受一个 const char*
指针作为它的参数。但是,标准库没有提供从 std::string
对象到 const char*
(表示其包含的字符串数据)的 隐式 转换。相反,您可以在该对象上调用 c_str()
member function,如下所示:
system(c.c_str());
我正在尝试将 sleep 1
命令包含在我的 .cpp 文件 bash 中
虽然 system("sleep 1")
工作正常,但我想将 1
更改为 const int 或 string
const string t = "1";
string c = "sleep " + t;
system(c);
但是,似乎 system(c)
被视为对函数的调用,因为发生了以下错误:
error: no matching function for call to 'system'
system(c);
我该如何解决?
system(c.c_str())
或者,等效地(来自 C++11),system(c.data())
system
函数接受一个 const char*
指针作为它的参数。但是,标准库没有提供从 std::string
对象到 const char*
(表示其包含的字符串数据)的 隐式 转换。相反,您可以在该对象上调用 c_str()
member function,如下所示:
system(c.c_str());