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.
如果我使用 startDetached() 启动 QProcess,我会得到一个完成的信号吗?我正在尝试启动一个进程,但我需要能够在进程终止时获得一个事件。
不,当您使用 startDetached 时您无法获得信号,因为您没有对象。
startDetached 是一个静态函数,当您调用它时,进程会直接启动,而无需创建 QProcess 对象。因此,即使有信号,您也无法将其连接到任何东西,因为您没有可连接的对象。
如果你想要一个信号,你应该创建一个 QProcess 对象,然后在它上面调用 start。然后,当过程完成时,您将能够获得完成的信号。