【发布时间】:2021-06-23 12:53:53
【问题描述】:
当我正在执行 system() 时,如何让 CTRL+C 不执行任何操作。
这是我的代码:
#include <iostream>
#include <functional>
#include <signal.h>
void noCTRLCCancel(int sig) {
signal(SIGINT, noCTRLCCancel);
std::cout << "CTRL+C pressed, not shutting down." << std::endl;
}
inline void command() {
system("some command"); // When CTRL+C is pressed, it cancels the command, but how to cancel CTRL+C and do nothing?
}
int main(int argc, char **argv) {
signal(SIGINT, noCTRLCCancel);
command();
}
【问题讨论】:
-
您也可以正确打开进程(使用
popen、CreateProcess或围绕它们的包装器)。如果可能的话,应该避免只使用system -
我的项目需要用到它,所以是的,我用system()就对了