python启用多线程后,调用exit出现无法退出的情况,原因是exit会抛出Systemexit的异常,如果在exit外围调用了try,就会出现ctrl+c两次才能退出的情况
解决方法:thread.setDaemon(True)
thread.start()
线程启动前设置setDaemon(True)
python启用多线程后,调用exit出现无法退出的情况,原因是exit会抛出Systemexit的异常,如果在exit外围调用了try,就会出现ctrl+c两次才能退出的情况
解决方法:thread.setDaemon(True)
thread.start()
线程启动前设置setDaemon(True)