gpt4 book ai didi

c++ - 如何在 C++ 中将 pid 转换为 const char 指针?

转载 作者:行者123 更新时间:2023-11-30 02:56:55 25 4
gpt4 key购买 nike

我正在尝试将 pid 类型转换为 const char 指针,以便我可以将它们作为参数传递到 execlp 函数中。

例如。 execlp("/bin/ps", "-f", "--ppid", "9340,9345,9346,9342");

我知道您可以将 pid 转换为字符串,例如。 const std::string my_pid(str_pid.str());

还有一个指向 const char 指针的字符串,例如。 my_pid.c_str();

但是如何将多个 pid 连接成一个 const char 指针,以便我可以对它们运行 execlp 命令?

最佳答案

ostringstream 可能就是您想要的。

例如,

std::ostringstream ostr;
for (int i=0; i<pids.count(); i++)
{
if (i > 0) ostr << ',';
ostr << pids[i];
}

execlp("/bin/ps", "-f", "--ppid", ostr.str().c_str());

关于c++ - 如何在 C++ 中将 pid 转换为 const char 指针?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15102049/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com