[Qt] QProcess::startDetached() 避免弹窗,或者窗口一闪而过
主动宣告
扫码关注我们
微信号:SRE实战
拒绝背锅 运筹帷幄
setProcessState(QProcess::NotRunning)
或者在堆上new一个QProcess。 出处: https://stackoverflow.com/questions/33874243/qprocessstartdetached-but-hide-console-window
I had exactly the same problem, and could not solve it in a clean way. I have found 2 options:
- Hacky way: Subclass
QProcess
and callsetProcessState(QProcess::NotRunning);
after starting the process. This will prevent the destructor to terminate the process. But it relies on an implementation detail ofQProcess
-
Create a memory leak: Dynamically create the
SRE实战 互联网时代守护先锋,助力企业售后服务体系运筹帷幄!一键直达领取阿里云限量特价优惠。QProcess
on the heap, but never delete it, and thus never invoke its destructor
{ QProcess *process = new QProcess; process->start("taskkill", QStringList() << "/f" << "/im" << "My Service.exe"); }

更多精彩