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.
Python:setproctitle 如何在 Swift 中做同样的事情?
setproctitle
您可以改变该ProcessInfo.processName属性:
ProcessInfo.processName
ProcessInfo.processInfo.processName = "New Name"
该属性的文档确实给出了这个警告
用户默认值和环境的其他方面可能取决于进程名称,因此在更改它时要非常小心。以这种方式设置进程名称不是线程安全的。