Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
当使用 fork() 创建子进程时,我们会得到子进程的 pid,如这里和许多其他地方所示。
有没有办法可以对 system() 函数做同样的事情?我在看这个的原因是,fork 似乎减慢了我的程序(fork 可能有 15-20 秒的开销),可能是由于它的开销,我想试试 system() 函数是否可以避免这种情况。
感谢帮助。