我正在尝试sleep 1
在我的 .cpp 文件中包含 bash 中的命令
虽然system("sleep 1")
工作正常,但我想更改1
为const int或字符串
const string t = "1";
string c = "sleep " + t;
system(c);
但是,似乎system(c)
被视为对函数的调用,因为发生以下错误:
error: no matching function for call to 'system'
system(c);
我该如何解决这个问题?