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.
我有一个用 C++ 编写的程序。这是一个程序,当网络连接丢失时需要重新启动...
我已经编写了正在 ping IP 的程序代码,但我一直坚持...
谁能给我看下一步的代码
事先谢谢你。
您需要创建一个单独的程序来监视您的程序,并在它停止时启动它。
自从我编写 C++ 以来已经有一段时间了,所以我将其呈现为伪代码:
if (network connection lost) { Process.Start("C:\Program Files\This Program\program.exe"); // exit this application }
C++ Process.Start 文档